From 32f4a1a65b5b94e00292ae539de58eb4bbfa21ca Mon Sep 17 00:00:00 2001 From: Divyanshu Bhargava Date: Sat, 9 Aug 2025 21:54:37 +0530 Subject: [PATCH 1/2] refactor: DSL support for Stac icon --- .../stac_icon_theme_data.dart | 3 +- .../stac_list_tile_theme_data.dart | 2 +- .../lib/src/parsers/types/type_parser.dart | 10 + .../parsers/widgets/stac_icon/stac_icon.dart | 26 - .../widgets/stac_icon/stac_icon.freezed.dart | 257 - .../widgets/stac_icon/stac_icon.g.dart | 37 - .../widgets/stac_icon/stac_icon_parser.dart | 25 +- .../widgets/stac_shadow/stac_shadow.dart | 31 - .../stac_shadow/stac_shadow.freezed.dart | 195 - .../widgets/stac_shadow/stac_shadow.g.dart | 24 - .../stac/lib/src/parsers/widgets/widgets.dart | 6 +- .../stac_models/lib/types/stac_icon_type.dart | 1 + .../lib/types/stac_shadow/stac_shadow.dart | 27 + .../lib/types/stac_shadow/stac_shadow.g.dart | 22 + packages/stac_models/lib/types/types.dart | 6 +- .../stac_floating_action_button.dart | 2 +- .../lib/widgets/icon/stac_icon.dart | 104 + .../lib/widgets/icon/stac_icon.g.dart | 89 + .../lib/widgets/icon/stac_icons.dart | 10786 ++++++++++++++++ .../widgets/icon_button/stac_icon_button.dart | 2 +- packages/stac_models/lib/widgets/widgets.dart | 20 +- 21 files changed, 11079 insertions(+), 596 deletions(-) delete mode 100644 packages/stac/lib/src/parsers/widgets/stac_icon/stac_icon.dart delete mode 100644 packages/stac/lib/src/parsers/widgets/stac_icon/stac_icon.freezed.dart delete mode 100644 packages/stac/lib/src/parsers/widgets/stac_icon/stac_icon.g.dart delete mode 100644 packages/stac/lib/src/parsers/widgets/stac_shadow/stac_shadow.dart delete mode 100644 packages/stac/lib/src/parsers/widgets/stac_shadow/stac_shadow.freezed.dart delete mode 100644 packages/stac/lib/src/parsers/widgets/stac_shadow/stac_shadow.g.dart create mode 100644 packages/stac_models/lib/types/stac_icon_type.dart create mode 100644 packages/stac_models/lib/types/stac_shadow/stac_shadow.dart create mode 100644 packages/stac_models/lib/types/stac_shadow/stac_shadow.g.dart create mode 100644 packages/stac_models/lib/widgets/icon/stac_icon.dart create mode 100644 packages/stac_models/lib/widgets/icon/stac_icon.g.dart create mode 100644 packages/stac_models/lib/widgets/icon/stac_icons.dart diff --git a/packages/stac/lib/src/parsers/theme/stac_icon_theme_data/stac_icon_theme_data.dart b/packages/stac/lib/src/parsers/theme/stac_icon_theme_data/stac_icon_theme_data.dart index e56ecd6e..60c98f59 100644 --- a/packages/stac/lib/src/parsers/theme/stac_icon_theme_data/stac_icon_theme_data.dart +++ b/packages/stac/lib/src/parsers/theme/stac_icon_theme_data/stac_icon_theme_data.dart @@ -1,7 +1,8 @@ import 'package:flutter/material.dart'; import 'package:freezed_annotation/freezed_annotation.dart'; -import 'package:stac/src/parsers/widgets/stac_shadow/stac_shadow.dart'; +import 'package:stac/src/parsers/types/type_parser.dart'; import 'package:stac/src/utils/color_utils.dart'; +import 'package:stac_models/types/stac_shadow/stac_shadow.dart'; part 'stac_icon_theme_data.freezed.dart'; part 'stac_icon_theme_data.g.dart'; diff --git a/packages/stac/lib/src/parsers/theme/stac_list_tile_theme_data/stac_list_tile_theme_data.dart b/packages/stac/lib/src/parsers/theme/stac_list_tile_theme_data/stac_list_tile_theme_data.dart index 0ac8c493..2fb874e3 100644 --- a/packages/stac/lib/src/parsers/theme/stac_list_tile_theme_data/stac_list_tile_theme_data.dart +++ b/packages/stac/lib/src/parsers/theme/stac_list_tile_theme_data/stac_list_tile_theme_data.dart @@ -3,12 +3,12 @@ import 'package:freezed_annotation/freezed_annotation.dart'; import 'package:stac/src/parsers/painting/stac_edge_insets_parser.dart'; import 'package:stac/src/parsers/painting/stac_text_style_parser.dart'; import 'package:stac/src/parsers/types/type_parser.dart'; -import 'package:stac/src/parsers/widgets/stac_shadow/stac_shadow.dart'; import 'package:stac/src/parsers/widgets/stac_visual_density/stac_visual_density.dart'; import 'package:stac/src/utils/color_utils.dart'; import 'package:stac_models/painting/stac_edge_insets/stac_edge_insets.dart'; import 'package:stac_models/painting/stac_text_style/stac_text_style.dart'; import 'package:stac_models/types/stac_border/stac_border.dart'; +import 'package:stac_models/types/stac_shadow/stac_shadow.dart'; part 'stac_list_tile_theme_data.freezed.dart'; part 'stac_list_tile_theme_data.g.dart'; diff --git a/packages/stac/lib/src/parsers/types/type_parser.dart b/packages/stac/lib/src/parsers/types/type_parser.dart index 5b69f83e..e29a6b9d 100644 --- a/packages/stac/lib/src/parsers/types/type_parser.dart +++ b/packages/stac/lib/src/parsers/types/type_parser.dart @@ -977,3 +977,13 @@ extension StacHitTestBehaviorParser on StacHitTestBehavior { } } } + +extension StacShadowParser on StacShadow { + Shadow parse(BuildContext context) { + return Shadow( + color: color.toColor(context) ?? Colors.transparent, + offset: (offset)?.parse ?? Offset.zero, + blurRadius: (blurRadius) ?? 0.0, + ); + } +} diff --git a/packages/stac/lib/src/parsers/widgets/stac_icon/stac_icon.dart b/packages/stac/lib/src/parsers/widgets/stac_icon/stac_icon.dart deleted file mode 100644 index bcb1ee00..00000000 --- a/packages/stac/lib/src/parsers/widgets/stac_icon/stac_icon.dart +++ /dev/null @@ -1,26 +0,0 @@ -import 'dart:ui'; - -import 'package:flutter/cupertino.dart'; -import 'package:freezed_annotation/freezed_annotation.dart'; -import 'package:stac/src/parsers/widgets/stac_double/stac_double.dart'; -import 'package:stac/src/utils/icon_utils.dart'; - -export 'stac_icon_parser.dart'; - -part 'stac_icon.freezed.dart'; -part 'stac_icon.g.dart'; - -@freezed -abstract class StacIcon with _$StacIcon { - const factory StacIcon({ - required String icon, - @Default(IconType.material) IconType iconType, - StacDouble? size, - String? color, - String? semanticLabel, - TextDirection? textDirection, - }) = _StacIcon; - - factory StacIcon.fromJson(Map json) => - _$StacIconFromJson(json); -} diff --git a/packages/stac/lib/src/parsers/widgets/stac_icon/stac_icon.freezed.dart b/packages/stac/lib/src/parsers/widgets/stac_icon/stac_icon.freezed.dart deleted file mode 100644 index d7a1dad2..00000000 --- a/packages/stac/lib/src/parsers/widgets/stac_icon/stac_icon.freezed.dart +++ /dev/null @@ -1,257 +0,0 @@ -// dart format width=80 -// coverage:ignore-file -// GENERATED CODE - DO NOT MODIFY BY HAND -// ignore_for_file: type=lint -// ignore_for_file: unused_element, deprecated_member_use, deprecated_member_use_from_same_package, use_function_type_syntax_for_parameters, unnecessary_const, avoid_init_to_null, invalid_override_different_default_values_named, prefer_expression_function_bodies, annotate_overrides, invalid_annotation_target, unnecessary_question_mark - -part of 'stac_icon.dart'; - -// ************************************************************************** -// FreezedGenerator -// ************************************************************************** - -// dart format off -T _$identity(T value) => value; - -/// @nodoc -mixin _$StacIcon { - String get icon; - IconType get iconType; - StacDouble? get size; - String? get color; - String? get semanticLabel; - TextDirection? get textDirection; - - /// Create a copy of StacIcon - /// with the given fields replaced by the non-null parameter values. - @JsonKey(includeFromJson: false, includeToJson: false) - @pragma('vm:prefer-inline') - $StacIconCopyWith get copyWith => - _$StacIconCopyWithImpl(this as StacIcon, _$identity); - - /// Serializes this StacIcon to a JSON map. - Map toJson(); - - @override - bool operator ==(Object other) { - return identical(this, other) || - (other.runtimeType == runtimeType && - other is StacIcon && - (identical(other.icon, icon) || other.icon == icon) && - (identical(other.iconType, iconType) || - other.iconType == iconType) && - (identical(other.size, size) || other.size == size) && - (identical(other.color, color) || other.color == color) && - (identical(other.semanticLabel, semanticLabel) || - other.semanticLabel == semanticLabel) && - (identical(other.textDirection, textDirection) || - other.textDirection == textDirection)); - } - - @JsonKey(includeFromJson: false, includeToJson: false) - @override - int get hashCode => Object.hash( - runtimeType, icon, iconType, size, color, semanticLabel, textDirection); - - @override - String toString() { - return 'StacIcon(icon: $icon, iconType: $iconType, size: $size, color: $color, semanticLabel: $semanticLabel, textDirection: $textDirection)'; - } -} - -/// @nodoc -abstract mixin class $StacIconCopyWith<$Res> { - factory $StacIconCopyWith(StacIcon value, $Res Function(StacIcon) _then) = - _$StacIconCopyWithImpl; - @useResult - $Res call( - {String icon, - IconType iconType, - StacDouble? size, - String? color, - String? semanticLabel, - TextDirection? textDirection}); -} - -/// @nodoc -class _$StacIconCopyWithImpl<$Res> implements $StacIconCopyWith<$Res> { - _$StacIconCopyWithImpl(this._self, this._then); - - final StacIcon _self; - final $Res Function(StacIcon) _then; - - /// Create a copy of StacIcon - /// with the given fields replaced by the non-null parameter values. - @pragma('vm:prefer-inline') - @override - $Res call({ - Object? icon = null, - Object? iconType = null, - Object? size = freezed, - Object? color = freezed, - Object? semanticLabel = freezed, - Object? textDirection = freezed, - }) { - return _then(_self.copyWith( - icon: null == icon - ? _self.icon - : icon // ignore: cast_nullable_to_non_nullable - as String, - iconType: null == iconType - ? _self.iconType - : iconType // ignore: cast_nullable_to_non_nullable - as IconType, - size: freezed == size - ? _self.size - : size // ignore: cast_nullable_to_non_nullable - as StacDouble?, - color: freezed == color - ? _self.color - : color // ignore: cast_nullable_to_non_nullable - as String?, - semanticLabel: freezed == semanticLabel - ? _self.semanticLabel - : semanticLabel // ignore: cast_nullable_to_non_nullable - as String?, - textDirection: freezed == textDirection - ? _self.textDirection - : textDirection // ignore: cast_nullable_to_non_nullable - as TextDirection?, - )); - } -} - -/// @nodoc -@JsonSerializable() -class _StacIcon implements StacIcon { - const _StacIcon( - {required this.icon, - this.iconType = IconType.material, - this.size, - this.color, - this.semanticLabel, - this.textDirection}); - factory _StacIcon.fromJson(Map json) => - _$StacIconFromJson(json); - - @override - final String icon; - @override - @JsonKey() - final IconType iconType; - @override - final StacDouble? size; - @override - final String? color; - @override - final String? semanticLabel; - @override - final TextDirection? textDirection; - - /// Create a copy of StacIcon - /// with the given fields replaced by the non-null parameter values. - @override - @JsonKey(includeFromJson: false, includeToJson: false) - @pragma('vm:prefer-inline') - _$StacIconCopyWith<_StacIcon> get copyWith => - __$StacIconCopyWithImpl<_StacIcon>(this, _$identity); - - @override - Map toJson() { - return _$StacIconToJson( - this, - ); - } - - @override - bool operator ==(Object other) { - return identical(this, other) || - (other.runtimeType == runtimeType && - other is _StacIcon && - (identical(other.icon, icon) || other.icon == icon) && - (identical(other.iconType, iconType) || - other.iconType == iconType) && - (identical(other.size, size) || other.size == size) && - (identical(other.color, color) || other.color == color) && - (identical(other.semanticLabel, semanticLabel) || - other.semanticLabel == semanticLabel) && - (identical(other.textDirection, textDirection) || - other.textDirection == textDirection)); - } - - @JsonKey(includeFromJson: false, includeToJson: false) - @override - int get hashCode => Object.hash( - runtimeType, icon, iconType, size, color, semanticLabel, textDirection); - - @override - String toString() { - return 'StacIcon(icon: $icon, iconType: $iconType, size: $size, color: $color, semanticLabel: $semanticLabel, textDirection: $textDirection)'; - } -} - -/// @nodoc -abstract mixin class _$StacIconCopyWith<$Res> - implements $StacIconCopyWith<$Res> { - factory _$StacIconCopyWith(_StacIcon value, $Res Function(_StacIcon) _then) = - __$StacIconCopyWithImpl; - @override - @useResult - $Res call( - {String icon, - IconType iconType, - StacDouble? size, - String? color, - String? semanticLabel, - TextDirection? textDirection}); -} - -/// @nodoc -class __$StacIconCopyWithImpl<$Res> implements _$StacIconCopyWith<$Res> { - __$StacIconCopyWithImpl(this._self, this._then); - - final _StacIcon _self; - final $Res Function(_StacIcon) _then; - - /// Create a copy of StacIcon - /// with the given fields replaced by the non-null parameter values. - @override - @pragma('vm:prefer-inline') - $Res call({ - Object? icon = null, - Object? iconType = null, - Object? size = freezed, - Object? color = freezed, - Object? semanticLabel = freezed, - Object? textDirection = freezed, - }) { - return _then(_StacIcon( - icon: null == icon - ? _self.icon - : icon // ignore: cast_nullable_to_non_nullable - as String, - iconType: null == iconType - ? _self.iconType - : iconType // ignore: cast_nullable_to_non_nullable - as IconType, - size: freezed == size - ? _self.size - : size // ignore: cast_nullable_to_non_nullable - as StacDouble?, - color: freezed == color - ? _self.color - : color // ignore: cast_nullable_to_non_nullable - as String?, - semanticLabel: freezed == semanticLabel - ? _self.semanticLabel - : semanticLabel // ignore: cast_nullable_to_non_nullable - as String?, - textDirection: freezed == textDirection - ? _self.textDirection - : textDirection // ignore: cast_nullable_to_non_nullable - as TextDirection?, - )); - } -} - -// dart format on diff --git a/packages/stac/lib/src/parsers/widgets/stac_icon/stac_icon.g.dart b/packages/stac/lib/src/parsers/widgets/stac_icon/stac_icon.g.dart deleted file mode 100644 index 28eb1bc4..00000000 --- a/packages/stac/lib/src/parsers/widgets/stac_icon/stac_icon.g.dart +++ /dev/null @@ -1,37 +0,0 @@ -// GENERATED CODE - DO NOT MODIFY BY HAND - -part of 'stac_icon.dart'; - -// ************************************************************************** -// JsonSerializableGenerator -// ************************************************************************** - -_StacIcon _$StacIconFromJson(Map json) => _StacIcon( - icon: json['icon'] as String, - iconType: $enumDecodeNullable(_$IconTypeEnumMap, json['iconType']) ?? - IconType.material, - size: json['size'] == null ? null : StacDouble.fromJson(json['size']), - color: json['color'] as String?, - semanticLabel: json['semanticLabel'] as String?, - textDirection: - $enumDecodeNullable(_$TextDirectionEnumMap, json['textDirection']), - ); - -Map _$StacIconToJson(_StacIcon instance) => { - 'icon': instance.icon, - 'iconType': _$IconTypeEnumMap[instance.iconType]!, - 'size': instance.size, - 'color': instance.color, - 'semanticLabel': instance.semanticLabel, - 'textDirection': _$TextDirectionEnumMap[instance.textDirection], - }; - -const _$IconTypeEnumMap = { - IconType.material: 'material', - IconType.cupertino: 'cupertino', -}; - -const _$TextDirectionEnumMap = { - TextDirection.rtl: 'rtl', - TextDirection.ltr: 'ltr', -}; diff --git a/packages/stac/lib/src/parsers/widgets/stac_icon/stac_icon_parser.dart b/packages/stac/lib/src/parsers/widgets/stac_icon/stac_icon_parser.dart index 018f810b..217d06da 100644 --- a/packages/stac/lib/src/parsers/widgets/stac_icon/stac_icon_parser.dart +++ b/packages/stac/lib/src/parsers/widgets/stac_icon/stac_icon_parser.dart @@ -1,15 +1,17 @@ import 'package:flutter/cupertino.dart'; -import 'package:stac/src/parsers/widgets/stac_double/stac_double.dart'; -import 'package:stac/src/utils/color_utils.dart'; +import 'package:flutter/material.dart'; +import 'package:stac/src/parsers/types/type_parser.dart'; import 'package:stac/src/utils/icon_utils.dart'; +import 'package:stac/src/utils/utils.dart'; import 'package:stac/src/utils/widget_type.dart'; import 'package:stac_framework/stac_framework.dart'; import 'package:stac_logger/stac_logger.dart'; - -import 'stac_icon.dart'; +import 'package:stac_models/types/stac_icon_type.dart'; +import 'package:stac_models/widgets/icon/stac_icon.dart'; class StacIconParser extends StacParser { const StacIconParser(); + @override String get type => WidgetType.icon.name; @@ -20,10 +22,10 @@ class StacIconParser extends StacParser { Widget parse(BuildContext context, StacIcon model) { IconData? iconData; switch (model.iconType) { - case IconType.material: + case StacIconType.material: iconData = materialIconMap[model.icon]; break; - case IconType.cupertino: + case StacIconType.cupertino: iconData = cupertinoIconsMap[model.icon]; break; } @@ -31,10 +33,17 @@ class StacIconParser extends StacParser { if (iconData != null) { return Icon( iconData, - size: model.size?.parse, + size: model.size, + fill: model.fill, + weight: model.weight, + grade: model.grade, + opticalSize: model.opticalSize, color: model.color.toColor(context), + shadows: model.shadows?.map((e) => e.parse(context)).toList(), semanticLabel: model.semanticLabel, - textDirection: model.textDirection, + textDirection: model.textDirection?.parse, + applyTextScaling: model.applyTextScaling, + blendMode: model.blendMode?.parse, ); } else { Log.e("The Icon ${model.icon} does not exist."); diff --git a/packages/stac/lib/src/parsers/widgets/stac_shadow/stac_shadow.dart b/packages/stac/lib/src/parsers/widgets/stac_shadow/stac_shadow.dart deleted file mode 100644 index 383a1205..00000000 --- a/packages/stac/lib/src/parsers/widgets/stac_shadow/stac_shadow.dart +++ /dev/null @@ -1,31 +0,0 @@ -import 'package:flutter/material.dart'; -import 'package:freezed_annotation/freezed_annotation.dart'; -import 'package:stac/src/parsers/types/type_parser.dart'; -import 'package:stac/src/parsers/widgets/stac_double/stac_double.dart'; -import 'package:stac/src/utils/color_utils.dart'; -import 'package:stac_models/types/stac_offset/stac_offset.dart'; - -part 'stac_shadow.freezed.dart'; -part 'stac_shadow.g.dart'; - -@freezed -abstract class StacShadow with _$StacShadow { - const factory StacShadow({ - @Default('#000000') String color, - @Default(StacOffset.zero) StacOffset offset, - @Default(StacDouble.zero) StacDouble blurRadius, - }) = _StacShadow; - - factory StacShadow.fromJson(Map json) => - _$StacShadowFromJson(json); -} - -extension StacShadowParser on StacShadow { - Shadow parse(BuildContext context) { - return Shadow( - color: color.toColor(context)!, - offset: offset.parse, - blurRadius: blurRadius.parse, - ); - } -} diff --git a/packages/stac/lib/src/parsers/widgets/stac_shadow/stac_shadow.freezed.dart b/packages/stac/lib/src/parsers/widgets/stac_shadow/stac_shadow.freezed.dart deleted file mode 100644 index a9d6f4bf..00000000 --- a/packages/stac/lib/src/parsers/widgets/stac_shadow/stac_shadow.freezed.dart +++ /dev/null @@ -1,195 +0,0 @@ -// dart format width=80 -// coverage:ignore-file -// GENERATED CODE - DO NOT MODIFY BY HAND -// ignore_for_file: type=lint -// ignore_for_file: unused_element, deprecated_member_use, deprecated_member_use_from_same_package, use_function_type_syntax_for_parameters, unnecessary_const, avoid_init_to_null, invalid_override_different_default_values_named, prefer_expression_function_bodies, annotate_overrides, invalid_annotation_target, unnecessary_question_mark - -part of 'stac_shadow.dart'; - -// ************************************************************************** -// FreezedGenerator -// ************************************************************************** - -// dart format off -T _$identity(T value) => value; - -/// @nodoc -mixin _$StacShadow { - String get color; - StacOffset get offset; - StacDouble get blurRadius; - - /// Create a copy of StacShadow - /// with the given fields replaced by the non-null parameter values. - @JsonKey(includeFromJson: false, includeToJson: false) - @pragma('vm:prefer-inline') - $StacShadowCopyWith get copyWith => - _$StacShadowCopyWithImpl(this as StacShadow, _$identity); - - /// Serializes this StacShadow to a JSON map. - Map toJson(); - - @override - bool operator ==(Object other) { - return identical(this, other) || - (other.runtimeType == runtimeType && - other is StacShadow && - (identical(other.color, color) || other.color == color) && - (identical(other.offset, offset) || other.offset == offset) && - (identical(other.blurRadius, blurRadius) || - other.blurRadius == blurRadius)); - } - - @JsonKey(includeFromJson: false, includeToJson: false) - @override - int get hashCode => Object.hash(runtimeType, color, offset, blurRadius); - - @override - String toString() { - return 'StacShadow(color: $color, offset: $offset, blurRadius: $blurRadius)'; - } -} - -/// @nodoc -abstract mixin class $StacShadowCopyWith<$Res> { - factory $StacShadowCopyWith( - StacShadow value, $Res Function(StacShadow) _then) = - _$StacShadowCopyWithImpl; - @useResult - $Res call({String color, StacOffset offset, StacDouble blurRadius}); -} - -/// @nodoc -class _$StacShadowCopyWithImpl<$Res> implements $StacShadowCopyWith<$Res> { - _$StacShadowCopyWithImpl(this._self, this._then); - - final StacShadow _self; - final $Res Function(StacShadow) _then; - - /// Create a copy of StacShadow - /// with the given fields replaced by the non-null parameter values. - @pragma('vm:prefer-inline') - @override - $Res call({ - Object? color = null, - Object? offset = null, - Object? blurRadius = null, - }) { - return _then(_self.copyWith( - color: null == color - ? _self.color - : color // ignore: cast_nullable_to_non_nullable - as String, - offset: null == offset - ? _self.offset - : offset // ignore: cast_nullable_to_non_nullable - as StacOffset, - blurRadius: null == blurRadius - ? _self.blurRadius - : blurRadius // ignore: cast_nullable_to_non_nullable - as StacDouble, - )); - } -} - -/// @nodoc -@JsonSerializable() -class _StacShadow implements StacShadow { - const _StacShadow( - {this.color = '#000000', - this.offset = StacOffset.zero, - this.blurRadius = StacDouble.zero}); - factory _StacShadow.fromJson(Map json) => - _$StacShadowFromJson(json); - - @override - @JsonKey() - final String color; - @override - @JsonKey() - final StacOffset offset; - @override - @JsonKey() - final StacDouble blurRadius; - - /// Create a copy of StacShadow - /// with the given fields replaced by the non-null parameter values. - @override - @JsonKey(includeFromJson: false, includeToJson: false) - @pragma('vm:prefer-inline') - _$StacShadowCopyWith<_StacShadow> get copyWith => - __$StacShadowCopyWithImpl<_StacShadow>(this, _$identity); - - @override - Map toJson() { - return _$StacShadowToJson( - this, - ); - } - - @override - bool operator ==(Object other) { - return identical(this, other) || - (other.runtimeType == runtimeType && - other is _StacShadow && - (identical(other.color, color) || other.color == color) && - (identical(other.offset, offset) || other.offset == offset) && - (identical(other.blurRadius, blurRadius) || - other.blurRadius == blurRadius)); - } - - @JsonKey(includeFromJson: false, includeToJson: false) - @override - int get hashCode => Object.hash(runtimeType, color, offset, blurRadius); - - @override - String toString() { - return 'StacShadow(color: $color, offset: $offset, blurRadius: $blurRadius)'; - } -} - -/// @nodoc -abstract mixin class _$StacShadowCopyWith<$Res> - implements $StacShadowCopyWith<$Res> { - factory _$StacShadowCopyWith( - _StacShadow value, $Res Function(_StacShadow) _then) = - __$StacShadowCopyWithImpl; - @override - @useResult - $Res call({String color, StacOffset offset, StacDouble blurRadius}); -} - -/// @nodoc -class __$StacShadowCopyWithImpl<$Res> implements _$StacShadowCopyWith<$Res> { - __$StacShadowCopyWithImpl(this._self, this._then); - - final _StacShadow _self; - final $Res Function(_StacShadow) _then; - - /// Create a copy of StacShadow - /// with the given fields replaced by the non-null parameter values. - @override - @pragma('vm:prefer-inline') - $Res call({ - Object? color = null, - Object? offset = null, - Object? blurRadius = null, - }) { - return _then(_StacShadow( - color: null == color - ? _self.color - : color // ignore: cast_nullable_to_non_nullable - as String, - offset: null == offset - ? _self.offset - : offset // ignore: cast_nullable_to_non_nullable - as StacOffset, - blurRadius: null == blurRadius - ? _self.blurRadius - : blurRadius // ignore: cast_nullable_to_non_nullable - as StacDouble, - )); - } -} - -// dart format on diff --git a/packages/stac/lib/src/parsers/widgets/stac_shadow/stac_shadow.g.dart b/packages/stac/lib/src/parsers/widgets/stac_shadow/stac_shadow.g.dart deleted file mode 100644 index 97652d2c..00000000 --- a/packages/stac/lib/src/parsers/widgets/stac_shadow/stac_shadow.g.dart +++ /dev/null @@ -1,24 +0,0 @@ -// GENERATED CODE - DO NOT MODIFY BY HAND - -part of 'stac_shadow.dart'; - -// ************************************************************************** -// JsonSerializableGenerator -// ************************************************************************** - -_StacShadow _$StacShadowFromJson(Map json) => _StacShadow( - color: json['color'] as String? ?? '#000000', - offset: json['offset'] == null - ? StacOffset.zero - : StacOffset.fromJson(json['offset'] as Map), - blurRadius: json['blurRadius'] == null - ? StacDouble.zero - : StacDouble.fromJson(json['blurRadius']), - ); - -Map _$StacShadowToJson(_StacShadow instance) => - { - 'color': instance.color, - 'offset': instance.offset, - 'blurRadius': instance.blurRadius, - }; diff --git a/packages/stac/lib/src/parsers/widgets/widgets.dart b/packages/stac/lib/src/parsers/widgets/widgets.dart index be666613..8a605c97 100644 --- a/packages/stac/lib/src/parsers/widgets/widgets.dart +++ b/packages/stac/lib/src/parsers/widgets/widgets.dart @@ -20,8 +20,8 @@ export 'package:stac/src/parsers/widgets/stac_circular_progress_indicator/stac_c export 'package:stac/src/parsers/widgets/stac_clip_oval/stac_clip_oval.dart'; export 'package:stac/src/parsers/widgets/stac_clip_rrect/stac_clip_rrect.dart'; export 'package:stac/src/parsers/widgets/stac_colored_box/stac_colored_box.dart'; -export 'package:stac/src/parsers/widgets/stac_conditional/stac_conditional.dart'; export 'package:stac/src/parsers/widgets/stac_column/stac_column_parser.dart'; +export 'package:stac/src/parsers/widgets/stac_conditional/stac_conditional.dart'; export 'package:stac/src/parsers/widgets/stac_container/stac_container_parser.dart'; export 'package:stac/src/parsers/widgets/stac_custom_scroll_view/stac_custom_scroll_view.dart'; export 'package:stac/src/parsers/widgets/stac_default_bottom_navigation_controller/stac_default_bottom_navigation_controller.dart'; @@ -48,7 +48,7 @@ export 'package:stac/src/parsers/widgets/stac_gesture_detector/stac_gesture_dete export 'package:stac/src/parsers/widgets/stac_gradient/stac_gradient.dart'; export 'package:stac/src/parsers/widgets/stac_grid_view/stac_grid_view.dart'; export 'package:stac/src/parsers/widgets/stac_hero/stac_hero.dart'; -export 'package:stac/src/parsers/widgets/stac_icon/stac_icon.dart'; +export 'package:stac/src/parsers/widgets/stac_icon/stac_icon_parser.dart'; export 'package:stac/src/parsers/widgets/stac_icon_button/stac_icon_button_parser.dart'; export 'package:stac/src/parsers/widgets/stac_image/stac_image.dart'; export 'package:stac/src/parsers/widgets/stac_input_decoration/stac_input_decoration.dart'; @@ -87,5 +87,5 @@ export 'package:stac/src/parsers/widgets/stac_text_field/stac_text_field.dart'; export 'package:stac/src/parsers/widgets/stac_text_form_field/stac_text_form_field.dart'; export 'package:stac/src/parsers/widgets/stac_text_style/stac_text_style.dart'; export 'package:stac/src/parsers/widgets/stac_vertical_divider/stac_vertical_divider_parser.dart'; -export 'package:stac/src/parsers/widgets/stac_wrap/stac_wrap_parser.dart'; export 'package:stac/src/parsers/widgets/stac_visibility/stac_visibility_parser.dart'; +export 'package:stac/src/parsers/widgets/stac_wrap/stac_wrap_parser.dart'; diff --git a/packages/stac_models/lib/types/stac_icon_type.dart b/packages/stac_models/lib/types/stac_icon_type.dart new file mode 100644 index 00000000..165c0f26 --- /dev/null +++ b/packages/stac_models/lib/types/stac_icon_type.dart @@ -0,0 +1 @@ +enum StacIconType { material, cupertino } diff --git a/packages/stac_models/lib/types/stac_shadow/stac_shadow.dart b/packages/stac_models/lib/types/stac_shadow/stac_shadow.dart new file mode 100644 index 00000000..08cb4087 --- /dev/null +++ b/packages/stac_models/lib/types/stac_shadow/stac_shadow.dart @@ -0,0 +1,27 @@ +import 'package:json_annotation/json_annotation.dart'; +import 'package:stac_models/core/converters/double_converter.dart'; +import 'package:stac_models/core/stac_widget.dart'; +import 'package:stac_models/types/stac_offset/stac_offset.dart'; + +part 'stac_shadow.g.dart'; + +@JsonSerializable() +class StacShadow implements StacElement { + const StacShadow({this.color, this.offset, this.blurRadius}); + + /// Color as hex or theme color name + final String? color; + + /// Offset for the shadow + final StacOffset? offset; + + /// Blur radius for the shadow + @DoubleConverter() + final double? blurRadius; + + factory StacShadow.fromJson(Map json) => + _$StacShadowFromJson(json); + + @override + Map toJson() => _$StacShadowToJson(this); +} diff --git a/packages/stac_models/lib/types/stac_shadow/stac_shadow.g.dart b/packages/stac_models/lib/types/stac_shadow/stac_shadow.g.dart new file mode 100644 index 00000000..a14c7edd --- /dev/null +++ b/packages/stac_models/lib/types/stac_shadow/stac_shadow.g.dart @@ -0,0 +1,22 @@ +// GENERATED CODE - DO NOT MODIFY BY HAND + +part of 'stac_shadow.dart'; + +// ************************************************************************** +// JsonSerializableGenerator +// ************************************************************************** + +StacShadow _$StacShadowFromJson(Map json) => StacShadow( + color: json['color'] as String?, + offset: json['offset'] == null + ? null + : StacOffset.fromJson(json['offset'] as Map), + blurRadius: const DoubleConverter().fromJson(json['blurRadius']), +); + +Map _$StacShadowToJson(StacShadow instance) => + { + 'color': instance.color, + 'offset': instance.offset?.toJson(), + 'blurRadius': const DoubleConverter().toJson(instance.blurRadius), + }; diff --git a/packages/stac_models/lib/types/types.dart b/packages/stac_models/lib/types/types.dart index 4bfd1531..edb8d8da 100644 --- a/packages/stac_models/lib/types/types.dart +++ b/packages/stac_models/lib/types/types.dart @@ -7,12 +7,14 @@ export 'stac_drag_start_behavior.dart'; export 'stac_duration/stac_duration.dart'; export 'stac_floating_action_button_location.dart'; export 'stac_hit_test_behavior.dart'; +export 'stac_icon_type.dart'; export 'stac_list_tile_style.dart'; export 'stac_list_tile_title_alignment.dart'; export 'stac_mouse_cursor.dart'; export 'stac_refresh_indicator_trigger_mode.dart'; export 'stac_rounded_rectangle_border/stac_rounded_rectangle_border.dart'; -export 'stac_size/stac_size.dart'; -export 'stac_visual_density/stac_visual_density.dart'; export 'stac_scroll_physics.dart'; export 'stac_scroll_view_keyboard_dismiss_behavior.dart'; +export 'stac_shadow/stac_shadow.dart'; +export 'stac_size/stac_size.dart'; +export 'stac_visual_density/stac_visual_density.dart'; diff --git a/packages/stac_models/lib/widgets/floating_action_button/stac_floating_action_button.dart b/packages/stac_models/lib/widgets/floating_action_button/stac_floating_action_button.dart index e4b7e3bc..b2d1d1c3 100644 --- a/packages/stac_models/lib/widgets/floating_action_button/stac_floating_action_button.dart +++ b/packages/stac_models/lib/widgets/floating_action_button/stac_floating_action_button.dart @@ -14,7 +14,7 @@ part 'stac_floating_action_button.g.dart'; /// ```dart /// StacFloatingActionButton( /// onPressed: {'action': 'navigate', 'route': '/next'}, -/// child: StacIcon(icon: Icons.add), +/// child: StacIcon(icon: 'add'), /// backgroundColor: '#FF5722', /// ) /// ``` diff --git a/packages/stac_models/lib/widgets/icon/stac_icon.dart b/packages/stac_models/lib/widgets/icon/stac_icon.dart new file mode 100644 index 00000000..1013938a --- /dev/null +++ b/packages/stac_models/lib/widgets/icon/stac_icon.dart @@ -0,0 +1,104 @@ +import 'package:json_annotation/json_annotation.dart'; +import 'package:stac_models/core/converters/double_converter.dart'; +import 'package:stac_models/core/stac_widget.dart'; +import 'package:stac_models/types/stac_blend_mode.dart'; +import 'package:stac_models/types/stac_icon_type.dart'; +import 'package:stac_models/types/stac_shadow/stac_shadow.dart'; +import 'package:stac_models/types/stac_text_types.dart'; + +part 'stac_icon.g.dart'; + +/// A Stac model representing Flutter's [Icon] widget. +/// +/// Displays a graphical symbol that represents an application, file type, +/// or action. +/// +/// ```dart +/// StacIcon( +/// icon: 'home', +/// iconType: StacIconType.material, +/// size: 24.0, +/// color: StacColors.black, +/// ) +/// ``` +/// +/// ```json +/// { +/// "type": "icon", +/// "icon": "home", +/// "iconType": "material", +/// "size": 24.0, +/// "color": "#000000" +/// } +/// ``` +@JsonSerializable() +class StacIcon extends StacWidget { + const StacIcon({ + required this.icon, + this.iconType = StacIconType.material, + this.size, + this.fill, + this.weight, + this.grade, + this.opticalSize, + this.color, + this.shadows, + this.semanticLabel, + this.textDirection, + this.applyTextScaling, + this.blendMode, + }); + + /// The name/key of the icon (as defined in icon utils maps). + final String icon; + + /// The icon library to use. + final StacIconType iconType; + + /// Size of the icon in logical pixels. + @DoubleConverter() + final double? size; + + /// Fill for the icon. + @DoubleConverter() + final double? fill; + + /// Weight for the icon. + @DoubleConverter() + final double? weight; + + /// Grade for the icon. + @DoubleConverter() + final double? grade; + + /// Optical size for the icon. + @DoubleConverter() + final double? opticalSize; + + /// Color of the icon. + final String? color; + + /// Shadows for the icon. + final List? shadows; + + /// Semantic label for accessibility. + final String? semanticLabel; + + /// The text direction to use for resolving certain icons. + final StacTextDirection? textDirection; + + /// Whether to apply text scaling to the icon. + final bool? applyTextScaling; + + /// Blend mode for the icon. + final StacBlendMode? blendMode; + + @override + String get type => 'icon'; + + factory StacIcon.fromJson(Map json) => + _$StacIconFromJson(json); + + @override + Map toJson() => _$StacIconToJson(this); +} diff --git a/packages/stac_models/lib/widgets/icon/stac_icon.g.dart b/packages/stac_models/lib/widgets/icon/stac_icon.g.dart new file mode 100644 index 00000000..8a1eff43 --- /dev/null +++ b/packages/stac_models/lib/widgets/icon/stac_icon.g.dart @@ -0,0 +1,89 @@ +// GENERATED CODE - DO NOT MODIFY BY HAND + +part of 'stac_icon.dart'; + +// ************************************************************************** +// JsonSerializableGenerator +// ************************************************************************** + +StacIcon _$StacIconFromJson(Map json) => StacIcon( + icon: json['icon'] as String, + iconType: + $enumDecodeNullable(_$StacIconTypeEnumMap, json['iconType']) ?? + StacIconType.material, + size: const DoubleConverter().fromJson(json['size']), + fill: const DoubleConverter().fromJson(json['fill']), + weight: const DoubleConverter().fromJson(json['weight']), + grade: const DoubleConverter().fromJson(json['grade']), + opticalSize: const DoubleConverter().fromJson(json['opticalSize']), + color: json['color'] as String?, + shadows: (json['shadows'] as List?) + ?.map((e) => StacShadow.fromJson(e as Map)) + .toList(), + semanticLabel: json['semanticLabel'] as String?, + textDirection: $enumDecodeNullable( + _$StacTextDirectionEnumMap, + json['textDirection'], + ), + applyTextScaling: json['applyTextScaling'] as bool?, + blendMode: $enumDecodeNullable(_$StacBlendModeEnumMap, json['blendMode']), +); + +Map _$StacIconToJson(StacIcon instance) => { + 'icon': instance.icon, + 'iconType': _$StacIconTypeEnumMap[instance.iconType]!, + 'size': const DoubleConverter().toJson(instance.size), + 'fill': const DoubleConverter().toJson(instance.fill), + 'weight': const DoubleConverter().toJson(instance.weight), + 'grade': const DoubleConverter().toJson(instance.grade), + 'opticalSize': const DoubleConverter().toJson(instance.opticalSize), + 'color': instance.color, + 'shadows': instance.shadows?.map((e) => e.toJson()).toList(), + 'semanticLabel': instance.semanticLabel, + 'textDirection': _$StacTextDirectionEnumMap[instance.textDirection], + 'applyTextScaling': instance.applyTextScaling, + 'blendMode': _$StacBlendModeEnumMap[instance.blendMode], + 'type': instance.type, +}; + +const _$StacIconTypeEnumMap = { + StacIconType.material: 'material', + StacIconType.cupertino: 'cupertino', +}; + +const _$StacTextDirectionEnumMap = { + StacTextDirection.rtl: 'rtl', + StacTextDirection.ltr: 'ltr', +}; + +const _$StacBlendModeEnumMap = { + StacBlendMode.clear: 'clear', + StacBlendMode.src: 'src', + StacBlendMode.dst: 'dst', + StacBlendMode.srcOver: 'srcOver', + StacBlendMode.dstOver: 'dstOver', + StacBlendMode.srcIn: 'srcIn', + StacBlendMode.dstIn: 'dstIn', + StacBlendMode.srcOut: 'srcOut', + StacBlendMode.dstOut: 'dstOut', + StacBlendMode.srcATop: 'srcATop', + StacBlendMode.dstATop: 'dstATop', + StacBlendMode.xor: 'xor', + StacBlendMode.plus: 'plus', + StacBlendMode.modulate: 'modulate', + StacBlendMode.screen: 'screen', + StacBlendMode.overlay: 'overlay', + StacBlendMode.darken: 'darken', + StacBlendMode.lighten: 'lighten', + StacBlendMode.colorDodge: 'colorDodge', + StacBlendMode.colorBurn: 'colorBurn', + StacBlendMode.hardLight: 'hardLight', + StacBlendMode.softLight: 'softLight', + StacBlendMode.difference: 'difference', + StacBlendMode.exclusion: 'exclusion', + StacBlendMode.multiply: 'multiply', + StacBlendMode.hue: 'hue', + StacBlendMode.saturation: 'saturation', + StacBlendMode.color: 'color', + StacBlendMode.luminosity: 'luminosity', +}; diff --git a/packages/stac_models/lib/widgets/icon/stac_icons.dart b/packages/stac_models/lib/widgets/icon/stac_icons.dart new file mode 100644 index 00000000..badcaff5 --- /dev/null +++ b/packages/stac_models/lib/widgets/icon/stac_icons.dart @@ -0,0 +1,10786 @@ +// GENERATED CODE - DO NOT MODIFY BY HAND +// Generated by tool/generate_stac_icons.dart +// ignore_for_file: constant_identifier_names +library; + +/// String constants for icon names usable in Stac JSON. +/// Generated from icon_utils.dart to avoid hardcoded strings. +class StacIcons { + static const String abc = 'abc'; + static const String abc_outlined = 'abc_outlined'; + static const String abc_rounded = 'abc_rounded'; + static const String abc_sharp = 'abc_sharp'; + static const String ac_unit = 'ac_unit'; + static const String ac_unit_outlined = 'ac_unit_outlined'; + static const String ac_unit_rounded = 'ac_unit_rounded'; + static const String ac_unit_sharp = 'ac_unit_sharp'; + static const String access_alarm = 'access_alarm'; + static const String access_alarm_outlined = 'access_alarm_outlined'; + static const String access_alarm_rounded = 'access_alarm_rounded'; + static const String access_alarm_sharp = 'access_alarm_sharp'; + static const String access_alarms = 'access_alarms'; + static const String access_alarms_outlined = 'access_alarms_outlined'; + static const String access_alarms_rounded = 'access_alarms_rounded'; + static const String access_alarms_sharp = 'access_alarms_sharp'; + static const String access_time = 'access_time'; + static const String access_time_filled = 'access_time_filled'; + static const String access_time_filled_outlined = + 'access_time_filled_outlined'; + static const String access_time_filled_rounded = 'access_time_filled_rounded'; + static const String access_time_filled_sharp = 'access_time_filled_sharp'; + static const String access_time_outlined = 'access_time_outlined'; + static const String access_time_rounded = 'access_time_rounded'; + static const String access_time_sharp = 'access_time_sharp'; + static const String accessibility = 'accessibility'; + static const String accessibility_new = 'accessibility_new'; + static const String accessibility_new_outlined = 'accessibility_new_outlined'; + static const String accessibility_new_rounded = 'accessibility_new_rounded'; + static const String accessibility_new_sharp = 'accessibility_new_sharp'; + static const String accessibility_outlined = 'accessibility_outlined'; + static const String accessibility_rounded = 'accessibility_rounded'; + static const String accessibility_sharp = 'accessibility_sharp'; + static const String accessible = 'accessible'; + static const String accessible_forward = 'accessible_forward'; + static const String accessible_forward_outlined = + 'accessible_forward_outlined'; + static const String accessible_forward_rounded = 'accessible_forward_rounded'; + static const String accessible_forward_sharp = 'accessible_forward_sharp'; + static const String accessible_outlined = 'accessible_outlined'; + static const String accessible_rounded = 'accessible_rounded'; + static const String accessible_sharp = 'accessible_sharp'; + static const String account_balance = 'account_balance'; + static const String account_balance_outlined = 'account_balance_outlined'; + static const String account_balance_rounded = 'account_balance_rounded'; + static const String account_balance_sharp = 'account_balance_sharp'; + static const String account_balance_wallet = 'account_balance_wallet'; + static const String account_balance_wallet_outlined = + 'account_balance_wallet_outlined'; + static const String account_balance_wallet_rounded = + 'account_balance_wallet_rounded'; + static const String account_balance_wallet_sharp = + 'account_balance_wallet_sharp'; + static const String account_box = 'account_box'; + static const String account_box_outlined = 'account_box_outlined'; + static const String account_box_rounded = 'account_box_rounded'; + static const String account_box_sharp = 'account_box_sharp'; + static const String account_circle = 'account_circle'; + static const String account_circle_outlined = 'account_circle_outlined'; + static const String account_circle_rounded = 'account_circle_rounded'; + static const String account_circle_sharp = 'account_circle_sharp'; + static const String account_tree = 'account_tree'; + static const String account_tree_outlined = 'account_tree_outlined'; + static const String account_tree_rounded = 'account_tree_rounded'; + static const String account_tree_sharp = 'account_tree_sharp'; + static const String ad_units = 'ad_units'; + static const String ad_units_outlined = 'ad_units_outlined'; + static const String ad_units_rounded = 'ad_units_rounded'; + static const String ad_units_sharp = 'ad_units_sharp'; + static const String adb = 'adb'; + static const String adb_outlined = 'adb_outlined'; + static const String adb_rounded = 'adb_rounded'; + static const String adb_sharp = 'adb_sharp'; + static const String add = 'add'; + static const String add_a_photo = 'add_a_photo'; + static const String add_a_photo_outlined = 'add_a_photo_outlined'; + static const String add_a_photo_rounded = 'add_a_photo_rounded'; + static const String add_a_photo_sharp = 'add_a_photo_sharp'; + static const String add_alarm = 'add_alarm'; + static const String add_alarm_outlined = 'add_alarm_outlined'; + static const String add_alarm_rounded = 'add_alarm_rounded'; + static const String add_alarm_sharp = 'add_alarm_sharp'; + static const String add_alert = 'add_alert'; + static const String add_alert_outlined = 'add_alert_outlined'; + static const String add_alert_rounded = 'add_alert_rounded'; + static const String add_alert_sharp = 'add_alert_sharp'; + static const String add_box = 'add_box'; + static const String add_box_outlined = 'add_box_outlined'; + static const String add_box_rounded = 'add_box_rounded'; + static const String add_box_sharp = 'add_box_sharp'; + static const String add_business = 'add_business'; + static const String add_business_outlined = 'add_business_outlined'; + static const String add_business_rounded = 'add_business_rounded'; + static const String add_business_sharp = 'add_business_sharp'; + static const String add_call = 'add_call'; + static const String add_card = 'add_card'; + static const String add_card_outlined = 'add_card_outlined'; + static const String add_card_rounded = 'add_card_rounded'; + static const String add_card_sharp = 'add_card_sharp'; + static const String add_chart = 'add_chart'; + static const String add_chart_outlined = 'add_chart_outlined'; + static const String add_chart_rounded = 'add_chart_rounded'; + static const String add_chart_sharp = 'add_chart_sharp'; + static const String add_circle = 'add_circle'; + static const String add_circle_outline = 'add_circle_outline'; + static const String add_circle_outline_outlined = + 'add_circle_outline_outlined'; + static const String add_circle_outline_rounded = 'add_circle_outline_rounded'; + static const String add_circle_outline_sharp = 'add_circle_outline_sharp'; + static const String add_circle_outlined = 'add_circle_outlined'; + static const String add_circle_rounded = 'add_circle_rounded'; + static const String add_circle_sharp = 'add_circle_sharp'; + static const String add_comment = 'add_comment'; + static const String add_comment_outlined = 'add_comment_outlined'; + static const String add_comment_rounded = 'add_comment_rounded'; + static const String add_comment_sharp = 'add_comment_sharp'; + static const String add_home = 'add_home'; + static const String add_home_outlined = 'add_home_outlined'; + static const String add_home_rounded = 'add_home_rounded'; + static const String add_home_sharp = 'add_home_sharp'; + static const String add_home_work = 'add_home_work'; + static const String add_home_work_outlined = 'add_home_work_outlined'; + static const String add_home_work_rounded = 'add_home_work_rounded'; + static const String add_home_work_sharp = 'add_home_work_sharp'; + static const String add_ic_call = 'add_ic_call'; + static const String add_ic_call_outlined = 'add_ic_call_outlined'; + static const String add_ic_call_rounded = 'add_ic_call_rounded'; + static const String add_ic_call_sharp = 'add_ic_call_sharp'; + static const String add_link = 'add_link'; + static const String add_link_outlined = 'add_link_outlined'; + static const String add_link_rounded = 'add_link_rounded'; + static const String add_link_sharp = 'add_link_sharp'; + static const String add_location = 'add_location'; + static const String add_location_alt = 'add_location_alt'; + static const String add_location_alt_outlined = 'add_location_alt_outlined'; + static const String add_location_alt_rounded = 'add_location_alt_rounded'; + static const String add_location_alt_sharp = 'add_location_alt_sharp'; + static const String add_location_outlined = 'add_location_outlined'; + static const String add_location_rounded = 'add_location_rounded'; + static const String add_location_sharp = 'add_location_sharp'; + static const String add_moderator = 'add_moderator'; + static const String add_moderator_outlined = 'add_moderator_outlined'; + static const String add_moderator_rounded = 'add_moderator_rounded'; + static const String add_moderator_sharp = 'add_moderator_sharp'; + static const String add_outlined = 'add_outlined'; + static const String add_photo_alternate = 'add_photo_alternate'; + static const String add_photo_alternate_outlined = + 'add_photo_alternate_outlined'; + static const String add_photo_alternate_rounded = + 'add_photo_alternate_rounded'; + static const String add_photo_alternate_sharp = 'add_photo_alternate_sharp'; + static const String add_reaction = 'add_reaction'; + static const String add_reaction_outlined = 'add_reaction_outlined'; + static const String add_reaction_rounded = 'add_reaction_rounded'; + static const String add_reaction_sharp = 'add_reaction_sharp'; + static const String add_road = 'add_road'; + static const String add_road_outlined = 'add_road_outlined'; + static const String add_road_rounded = 'add_road_rounded'; + static const String add_road_sharp = 'add_road_sharp'; + static const String add_rounded = 'add_rounded'; + static const String add_sharp = 'add_sharp'; + static const String add_shopping_cart = 'add_shopping_cart'; + static const String add_shopping_cart_outlined = 'add_shopping_cart_outlined'; + static const String add_shopping_cart_rounded = 'add_shopping_cart_rounded'; + static const String add_shopping_cart_sharp = 'add_shopping_cart_sharp'; + static const String add_task = 'add_task'; + static const String add_task_outlined = 'add_task_outlined'; + static const String add_task_rounded = 'add_task_rounded'; + static const String add_task_sharp = 'add_task_sharp'; + static const String add_to_drive = 'add_to_drive'; + static const String add_to_drive_outlined = 'add_to_drive_outlined'; + static const String add_to_drive_rounded = 'add_to_drive_rounded'; + static const String add_to_drive_sharp = 'add_to_drive_sharp'; + static const String add_to_home_screen = 'add_to_home_screen'; + static const String add_to_home_screen_outlined = + 'add_to_home_screen_outlined'; + static const String add_to_home_screen_rounded = 'add_to_home_screen_rounded'; + static const String add_to_home_screen_sharp = 'add_to_home_screen_sharp'; + static const String add_to_photos = 'add_to_photos'; + static const String add_to_photos_outlined = 'add_to_photos_outlined'; + static const String add_to_photos_rounded = 'add_to_photos_rounded'; + static const String add_to_photos_sharp = 'add_to_photos_sharp'; + static const String add_to_queue = 'add_to_queue'; + static const String add_to_queue_outlined = 'add_to_queue_outlined'; + static const String add_to_queue_rounded = 'add_to_queue_rounded'; + static const String add_to_queue_sharp = 'add_to_queue_sharp'; + static const String addchart = 'addchart'; + static const String addchart_outlined = 'addchart_outlined'; + static const String addchart_rounded = 'addchart_rounded'; + static const String addchart_sharp = 'addchart_sharp'; + static const String adf_scanner = 'adf_scanner'; + static const String adf_scanner_outlined = 'adf_scanner_outlined'; + static const String adf_scanner_rounded = 'adf_scanner_rounded'; + static const String adf_scanner_sharp = 'adf_scanner_sharp'; + static const String adjust = 'adjust'; + static const String adjust_outlined = 'adjust_outlined'; + static const String adjust_rounded = 'adjust_rounded'; + static const String adjust_sharp = 'adjust_sharp'; + static const String admin_panel_settings = 'admin_panel_settings'; + static const String admin_panel_settings_outlined = + 'admin_panel_settings_outlined'; + static const String admin_panel_settings_rounded = + 'admin_panel_settings_rounded'; + static const String admin_panel_settings_sharp = 'admin_panel_settings_sharp'; + static const String adobe = 'adobe'; + static const String adobe_outlined = 'adobe_outlined'; + static const String adobe_rounded = 'adobe_rounded'; + static const String adobe_sharp = 'adobe_sharp'; + static const String ads_click = 'ads_click'; + static const String ads_click_outlined = 'ads_click_outlined'; + static const String ads_click_rounded = 'ads_click_rounded'; + static const String ads_click_sharp = 'ads_click_sharp'; + static const String agriculture = 'agriculture'; + static const String agriculture_outlined = 'agriculture_outlined'; + static const String agriculture_rounded = 'agriculture_rounded'; + static const String agriculture_sharp = 'agriculture_sharp'; + static const String air = 'air'; + static const String air_outlined = 'air_outlined'; + static const String air_rounded = 'air_rounded'; + static const String air_sharp = 'air_sharp'; + static const String airline_seat_flat = 'airline_seat_flat'; + static const String airline_seat_flat_angled = 'airline_seat_flat_angled'; + static const String airline_seat_flat_angled_outlined = + 'airline_seat_flat_angled_outlined'; + static const String airline_seat_flat_angled_rounded = + 'airline_seat_flat_angled_rounded'; + static const String airline_seat_flat_angled_sharp = + 'airline_seat_flat_angled_sharp'; + static const String airline_seat_flat_outlined = 'airline_seat_flat_outlined'; + static const String airline_seat_flat_rounded = 'airline_seat_flat_rounded'; + static const String airline_seat_flat_sharp = 'airline_seat_flat_sharp'; + static const String airline_seat_individual_suite = + 'airline_seat_individual_suite'; + static const String airline_seat_individual_suite_outlined = + 'airline_seat_individual_suite_outlined'; + static const String airline_seat_individual_suite_rounded = + 'airline_seat_individual_suite_rounded'; + static const String airline_seat_individual_suite_sharp = + 'airline_seat_individual_suite_sharp'; + static const String airline_seat_legroom_extra = 'airline_seat_legroom_extra'; + static const String airline_seat_legroom_extra_outlined = + 'airline_seat_legroom_extra_outlined'; + static const String airline_seat_legroom_extra_rounded = + 'airline_seat_legroom_extra_rounded'; + static const String airline_seat_legroom_extra_sharp = + 'airline_seat_legroom_extra_sharp'; + static const String airline_seat_legroom_normal = + 'airline_seat_legroom_normal'; + static const String airline_seat_legroom_normal_outlined = + 'airline_seat_legroom_normal_outlined'; + static const String airline_seat_legroom_normal_rounded = + 'airline_seat_legroom_normal_rounded'; + static const String airline_seat_legroom_normal_sharp = + 'airline_seat_legroom_normal_sharp'; + static const String airline_seat_legroom_reduced = + 'airline_seat_legroom_reduced'; + static const String airline_seat_legroom_reduced_outlined = + 'airline_seat_legroom_reduced_outlined'; + static const String airline_seat_legroom_reduced_rounded = + 'airline_seat_legroom_reduced_rounded'; + static const String airline_seat_legroom_reduced_sharp = + 'airline_seat_legroom_reduced_sharp'; + static const String airline_seat_recline_extra = 'airline_seat_recline_extra'; + static const String airline_seat_recline_extra_outlined = + 'airline_seat_recline_extra_outlined'; + static const String airline_seat_recline_extra_rounded = + 'airline_seat_recline_extra_rounded'; + static const String airline_seat_recline_extra_sharp = + 'airline_seat_recline_extra_sharp'; + static const String airline_seat_recline_normal = + 'airline_seat_recline_normal'; + static const String airline_seat_recline_normal_outlined = + 'airline_seat_recline_normal_outlined'; + static const String airline_seat_recline_normal_rounded = + 'airline_seat_recline_normal_rounded'; + static const String airline_seat_recline_normal_sharp = + 'airline_seat_recline_normal_sharp'; + static const String airline_stops = 'airline_stops'; + static const String airline_stops_outlined = 'airline_stops_outlined'; + static const String airline_stops_rounded = 'airline_stops_rounded'; + static const String airline_stops_sharp = 'airline_stops_sharp'; + static const String airlines = 'airlines'; + static const String airlines_outlined = 'airlines_outlined'; + static const String airlines_rounded = 'airlines_rounded'; + static const String airlines_sharp = 'airlines_sharp'; + static const String airplane_ticket = 'airplane_ticket'; + static const String airplane_ticket_outlined = 'airplane_ticket_outlined'; + static const String airplane_ticket_rounded = 'airplane_ticket_rounded'; + static const String airplane_ticket_sharp = 'airplane_ticket_sharp'; + static const String airplanemode_active = 'airplanemode_active'; + static const String airplanemode_active_outlined = + 'airplanemode_active_outlined'; + static const String airplanemode_active_rounded = + 'airplanemode_active_rounded'; + static const String airplanemode_active_sharp = 'airplanemode_active_sharp'; + static const String airplanemode_inactive = 'airplanemode_inactive'; + static const String airplanemode_inactive_outlined = + 'airplanemode_inactive_outlined'; + static const String airplanemode_inactive_rounded = + 'airplanemode_inactive_rounded'; + static const String airplanemode_inactive_sharp = + 'airplanemode_inactive_sharp'; + static const String airplanemode_off = 'airplanemode_off'; + static const String airplanemode_off_outlined = 'airplanemode_off_outlined'; + static const String airplanemode_off_rounded = 'airplanemode_off_rounded'; + static const String airplanemode_off_sharp = 'airplanemode_off_sharp'; + static const String airplanemode_on = 'airplanemode_on'; + static const String airplanemode_on_outlined = 'airplanemode_on_outlined'; + static const String airplanemode_on_rounded = 'airplanemode_on_rounded'; + static const String airplanemode_on_sharp = 'airplanemode_on_sharp'; + static const String airplay = 'airplay'; + static const String airplay_outlined = 'airplay_outlined'; + static const String airplay_rounded = 'airplay_rounded'; + static const String airplay_sharp = 'airplay_sharp'; + static const String airport_shuttle = 'airport_shuttle'; + static const String airport_shuttle_outlined = 'airport_shuttle_outlined'; + static const String airport_shuttle_rounded = 'airport_shuttle_rounded'; + static const String airport_shuttle_sharp = 'airport_shuttle_sharp'; + static const String alarm = 'alarm'; + static const String alarm_add = 'alarm_add'; + static const String alarm_add_outlined = 'alarm_add_outlined'; + static const String alarm_add_rounded = 'alarm_add_rounded'; + static const String alarm_add_sharp = 'alarm_add_sharp'; + static const String alarm_off = 'alarm_off'; + static const String alarm_off_outlined = 'alarm_off_outlined'; + static const String alarm_off_rounded = 'alarm_off_rounded'; + static const String alarm_off_sharp = 'alarm_off_sharp'; + static const String alarm_on = 'alarm_on'; + static const String alarm_on_outlined = 'alarm_on_outlined'; + static const String alarm_on_rounded = 'alarm_on_rounded'; + static const String alarm_on_sharp = 'alarm_on_sharp'; + static const String alarm_outlined = 'alarm_outlined'; + static const String alarm_rounded = 'alarm_rounded'; + static const String alarm_sharp = 'alarm_sharp'; + static const String album = 'album'; + static const String album_outlined = 'album_outlined'; + static const String album_rounded = 'album_rounded'; + static const String album_sharp = 'album_sharp'; + static const String align_horizontal_center = 'align_horizontal_center'; + static const String align_horizontal_center_outlined = + 'align_horizontal_center_outlined'; + static const String align_horizontal_center_rounded = + 'align_horizontal_center_rounded'; + static const String align_horizontal_center_sharp = + 'align_horizontal_center_sharp'; + static const String align_horizontal_left = 'align_horizontal_left'; + static const String align_horizontal_left_outlined = + 'align_horizontal_left_outlined'; + static const String align_horizontal_left_rounded = + 'align_horizontal_left_rounded'; + static const String align_horizontal_left_sharp = + 'align_horizontal_left_sharp'; + static const String align_horizontal_right = 'align_horizontal_right'; + static const String align_horizontal_right_outlined = + 'align_horizontal_right_outlined'; + static const String align_horizontal_right_rounded = + 'align_horizontal_right_rounded'; + static const String align_horizontal_right_sharp = + 'align_horizontal_right_sharp'; + static const String align_vertical_bottom = 'align_vertical_bottom'; + static const String align_vertical_bottom_outlined = + 'align_vertical_bottom_outlined'; + static const String align_vertical_bottom_rounded = + 'align_vertical_bottom_rounded'; + static const String align_vertical_bottom_sharp = + 'align_vertical_bottom_sharp'; + static const String align_vertical_center = 'align_vertical_center'; + static const String align_vertical_center_outlined = + 'align_vertical_center_outlined'; + static const String align_vertical_center_rounded = + 'align_vertical_center_rounded'; + static const String align_vertical_center_sharp = + 'align_vertical_center_sharp'; + static const String align_vertical_top = 'align_vertical_top'; + static const String align_vertical_top_outlined = + 'align_vertical_top_outlined'; + static const String align_vertical_top_rounded = 'align_vertical_top_rounded'; + static const String align_vertical_top_sharp = 'align_vertical_top_sharp'; + static const String all_inbox = 'all_inbox'; + static const String all_inbox_outlined = 'all_inbox_outlined'; + static const String all_inbox_rounded = 'all_inbox_rounded'; + static const String all_inbox_sharp = 'all_inbox_sharp'; + static const String all_inclusive = 'all_inclusive'; + static const String all_inclusive_outlined = 'all_inclusive_outlined'; + static const String all_inclusive_rounded = 'all_inclusive_rounded'; + static const String all_inclusive_sharp = 'all_inclusive_sharp'; + static const String all_out = 'all_out'; + static const String all_out_outlined = 'all_out_outlined'; + static const String all_out_rounded = 'all_out_rounded'; + static const String all_out_sharp = 'all_out_sharp'; + static const String alt_route = 'alt_route'; + static const String alt_route_outlined = 'alt_route_outlined'; + static const String alt_route_rounded = 'alt_route_rounded'; + static const String alt_route_sharp = 'alt_route_sharp'; + static const String alternate_email = 'alternate_email'; + static const String alternate_email_outlined = 'alternate_email_outlined'; + static const String alternate_email_rounded = 'alternate_email_rounded'; + static const String alternate_email_sharp = 'alternate_email_sharp'; + static const String amp_stories = 'amp_stories'; + static const String amp_stories_outlined = 'amp_stories_outlined'; + static const String amp_stories_rounded = 'amp_stories_rounded'; + static const String amp_stories_sharp = 'amp_stories_sharp'; + static const String analytics = 'analytics'; + static const String analytics_outlined = 'analytics_outlined'; + static const String analytics_rounded = 'analytics_rounded'; + static const String analytics_sharp = 'analytics_sharp'; + static const String anchor = 'anchor'; + static const String anchor_outlined = 'anchor_outlined'; + static const String anchor_rounded = 'anchor_rounded'; + static const String anchor_sharp = 'anchor_sharp'; + static const String android = 'android'; + static const String android_outlined = 'android_outlined'; + static const String android_rounded = 'android_rounded'; + static const String android_sharp = 'android_sharp'; + static const String animation = 'animation'; + static const String animation_outlined = 'animation_outlined'; + static const String animation_rounded = 'animation_rounded'; + static const String animation_sharp = 'animation_sharp'; + static const String announcement = 'announcement'; + static const String announcement_outlined = 'announcement_outlined'; + static const String announcement_rounded = 'announcement_rounded'; + static const String announcement_sharp = 'announcement_sharp'; + static const String aod = 'aod'; + static const String aod_outlined = 'aod_outlined'; + static const String aod_rounded = 'aod_rounded'; + static const String aod_sharp = 'aod_sharp'; + static const String apartment = 'apartment'; + static const String apartment_outlined = 'apartment_outlined'; + static const String apartment_rounded = 'apartment_rounded'; + static const String apartment_sharp = 'apartment_sharp'; + static const String api = 'api'; + static const String api_outlined = 'api_outlined'; + static const String api_rounded = 'api_rounded'; + static const String api_sharp = 'api_sharp'; + static const String app_blocking = 'app_blocking'; + static const String app_blocking_outlined = 'app_blocking_outlined'; + static const String app_blocking_rounded = 'app_blocking_rounded'; + static const String app_blocking_sharp = 'app_blocking_sharp'; + static const String app_registration = 'app_registration'; + static const String app_registration_outlined = 'app_registration_outlined'; + static const String app_registration_rounded = 'app_registration_rounded'; + static const String app_registration_sharp = 'app_registration_sharp'; + static const String app_settings_alt = 'app_settings_alt'; + static const String app_settings_alt_outlined = 'app_settings_alt_outlined'; + static const String app_settings_alt_rounded = 'app_settings_alt_rounded'; + static const String app_settings_alt_sharp = 'app_settings_alt_sharp'; + static const String app_shortcut = 'app_shortcut'; + static const String app_shortcut_outlined = 'app_shortcut_outlined'; + static const String app_shortcut_rounded = 'app_shortcut_rounded'; + static const String app_shortcut_sharp = 'app_shortcut_sharp'; + static const String apple = 'apple'; + static const String apple_outlined = 'apple_outlined'; + static const String apple_rounded = 'apple_rounded'; + static const String apple_sharp = 'apple_sharp'; + static const String approval = 'approval'; + static const String approval_outlined = 'approval_outlined'; + static const String approval_rounded = 'approval_rounded'; + static const String approval_sharp = 'approval_sharp'; + static const String apps = 'apps'; + static const String apps_outage = 'apps_outage'; + static const String apps_outage_outlined = 'apps_outage_outlined'; + static const String apps_outage_rounded = 'apps_outage_rounded'; + static const String apps_outage_sharp = 'apps_outage_sharp'; + static const String apps_outlined = 'apps_outlined'; + static const String apps_rounded = 'apps_rounded'; + static const String apps_sharp = 'apps_sharp'; + static const String architecture = 'architecture'; + static const String architecture_outlined = 'architecture_outlined'; + static const String architecture_rounded = 'architecture_rounded'; + static const String architecture_sharp = 'architecture_sharp'; + static const String archive = 'archive'; + static const String archive_outlined = 'archive_outlined'; + static const String archive_rounded = 'archive_rounded'; + static const String archive_sharp = 'archive_sharp'; + static const String area_chart = 'area_chart'; + static const String area_chart_outlined = 'area_chart_outlined'; + static const String area_chart_rounded = 'area_chart_rounded'; + static const String area_chart_sharp = 'area_chart_sharp'; + static const String arrow_back = 'arrow_back'; + static const String arrow_back_ios = 'arrow_back_ios'; + static const String arrow_back_ios_new = 'arrow_back_ios_new'; + static const String arrow_back_ios_new_outlined = + 'arrow_back_ios_new_outlined'; + static const String arrow_back_ios_new_rounded = 'arrow_back_ios_new_rounded'; + static const String arrow_back_ios_new_sharp = 'arrow_back_ios_new_sharp'; + static const String arrow_back_ios_outlined = 'arrow_back_ios_outlined'; + static const String arrow_back_ios_rounded = 'arrow_back_ios_rounded'; + static const String arrow_back_ios_sharp = 'arrow_back_ios_sharp'; + static const String arrow_back_outlined = 'arrow_back_outlined'; + static const String arrow_back_rounded = 'arrow_back_rounded'; + static const String arrow_back_sharp = 'arrow_back_sharp'; + static const String arrow_circle_down = 'arrow_circle_down'; + static const String arrow_circle_down_outlined = 'arrow_circle_down_outlined'; + static const String arrow_circle_down_rounded = 'arrow_circle_down_rounded'; + static const String arrow_circle_down_sharp = 'arrow_circle_down_sharp'; + static const String arrow_circle_left = 'arrow_circle_left'; + static const String arrow_circle_left_outlined = 'arrow_circle_left_outlined'; + static const String arrow_circle_left_rounded = 'arrow_circle_left_rounded'; + static const String arrow_circle_left_sharp = 'arrow_circle_left_sharp'; + static const String arrow_circle_right = 'arrow_circle_right'; + static const String arrow_circle_right_outlined = + 'arrow_circle_right_outlined'; + static const String arrow_circle_right_rounded = 'arrow_circle_right_rounded'; + static const String arrow_circle_right_sharp = 'arrow_circle_right_sharp'; + static const String arrow_circle_up = 'arrow_circle_up'; + static const String arrow_circle_up_outlined = 'arrow_circle_up_outlined'; + static const String arrow_circle_up_rounded = 'arrow_circle_up_rounded'; + static const String arrow_circle_up_sharp = 'arrow_circle_up_sharp'; + static const String arrow_downward = 'arrow_downward'; + static const String arrow_downward_outlined = 'arrow_downward_outlined'; + static const String arrow_downward_rounded = 'arrow_downward_rounded'; + static const String arrow_downward_sharp = 'arrow_downward_sharp'; + static const String arrow_drop_down = 'arrow_drop_down'; + static const String arrow_drop_down_circle = 'arrow_drop_down_circle'; + static const String arrow_drop_down_circle_outlined = + 'arrow_drop_down_circle_outlined'; + static const String arrow_drop_down_circle_rounded = + 'arrow_drop_down_circle_rounded'; + static const String arrow_drop_down_circle_sharp = + 'arrow_drop_down_circle_sharp'; + static const String arrow_drop_down_outlined = 'arrow_drop_down_outlined'; + static const String arrow_drop_down_rounded = 'arrow_drop_down_rounded'; + static const String arrow_drop_down_sharp = 'arrow_drop_down_sharp'; + static const String arrow_drop_up = 'arrow_drop_up'; + static const String arrow_drop_up_outlined = 'arrow_drop_up_outlined'; + static const String arrow_drop_up_rounded = 'arrow_drop_up_rounded'; + static const String arrow_drop_up_sharp = 'arrow_drop_up_sharp'; + static const String arrow_forward = 'arrow_forward'; + static const String arrow_forward_ios = 'arrow_forward_ios'; + static const String arrow_forward_ios_outlined = 'arrow_forward_ios_outlined'; + static const String arrow_forward_ios_rounded = 'arrow_forward_ios_rounded'; + static const String arrow_forward_ios_sharp = 'arrow_forward_ios_sharp'; + static const String arrow_forward_outlined = 'arrow_forward_outlined'; + static const String arrow_forward_rounded = 'arrow_forward_rounded'; + static const String arrow_forward_sharp = 'arrow_forward_sharp'; + static const String arrow_left = 'arrow_left'; + static const String arrow_left_outlined = 'arrow_left_outlined'; + static const String arrow_left_rounded = 'arrow_left_rounded'; + static const String arrow_left_sharp = 'arrow_left_sharp'; + static const String arrow_right = 'arrow_right'; + static const String arrow_right_alt = 'arrow_right_alt'; + static const String arrow_right_alt_outlined = 'arrow_right_alt_outlined'; + static const String arrow_right_alt_rounded = 'arrow_right_alt_rounded'; + static const String arrow_right_alt_sharp = 'arrow_right_alt_sharp'; + static const String arrow_right_outlined = 'arrow_right_outlined'; + static const String arrow_right_rounded = 'arrow_right_rounded'; + static const String arrow_right_sharp = 'arrow_right_sharp'; + static const String arrow_upward = 'arrow_upward'; + static const String arrow_upward_outlined = 'arrow_upward_outlined'; + static const String arrow_upward_rounded = 'arrow_upward_rounded'; + static const String arrow_upward_sharp = 'arrow_upward_sharp'; + static const String art_track = 'art_track'; + static const String art_track_outlined = 'art_track_outlined'; + static const String art_track_rounded = 'art_track_rounded'; + static const String art_track_sharp = 'art_track_sharp'; + static const String article = 'article'; + static const String article_outlined = 'article_outlined'; + static const String article_rounded = 'article_rounded'; + static const String article_sharp = 'article_sharp'; + static const String aspect_ratio = 'aspect_ratio'; + static const String aspect_ratio_outlined = 'aspect_ratio_outlined'; + static const String aspect_ratio_rounded = 'aspect_ratio_rounded'; + static const String aspect_ratio_sharp = 'aspect_ratio_sharp'; + static const String assessment = 'assessment'; + static const String assessment_outlined = 'assessment_outlined'; + static const String assessment_rounded = 'assessment_rounded'; + static const String assessment_sharp = 'assessment_sharp'; + static const String assignment = 'assignment'; + static const String assignment_ind = 'assignment_ind'; + static const String assignment_ind_outlined = 'assignment_ind_outlined'; + static const String assignment_ind_rounded = 'assignment_ind_rounded'; + static const String assignment_ind_sharp = 'assignment_ind_sharp'; + static const String assignment_late = 'assignment_late'; + static const String assignment_late_outlined = 'assignment_late_outlined'; + static const String assignment_late_rounded = 'assignment_late_rounded'; + static const String assignment_late_sharp = 'assignment_late_sharp'; + static const String assignment_outlined = 'assignment_outlined'; + static const String assignment_return = 'assignment_return'; + static const String assignment_return_outlined = 'assignment_return_outlined'; + static const String assignment_return_rounded = 'assignment_return_rounded'; + static const String assignment_return_sharp = 'assignment_return_sharp'; + static const String assignment_returned = 'assignment_returned'; + static const String assignment_returned_outlined = + 'assignment_returned_outlined'; + static const String assignment_returned_rounded = + 'assignment_returned_rounded'; + static const String assignment_returned_sharp = 'assignment_returned_sharp'; + static const String assignment_rounded = 'assignment_rounded'; + static const String assignment_sharp = 'assignment_sharp'; + static const String assignment_turned_in = 'assignment_turned_in'; + static const String assignment_turned_in_outlined = + 'assignment_turned_in_outlined'; + static const String assignment_turned_in_rounded = + 'assignment_turned_in_rounded'; + static const String assignment_turned_in_sharp = 'assignment_turned_in_sharp'; + static const String assistant = 'assistant'; + static const String assistant_direction = 'assistant_direction'; + static const String assistant_direction_outlined = + 'assistant_direction_outlined'; + static const String assistant_direction_rounded = + 'assistant_direction_rounded'; + static const String assistant_direction_sharp = 'assistant_direction_sharp'; + static const String assistant_navigation = 'assistant_navigation'; + static const String assistant_outlined = 'assistant_outlined'; + static const String assistant_photo = 'assistant_photo'; + static const String assistant_photo_outlined = 'assistant_photo_outlined'; + static const String assistant_photo_rounded = 'assistant_photo_rounded'; + static const String assistant_photo_sharp = 'assistant_photo_sharp'; + static const String assistant_rounded = 'assistant_rounded'; + static const String assistant_sharp = 'assistant_sharp'; + static const String assured_workload = 'assured_workload'; + static const String assured_workload_outlined = 'assured_workload_outlined'; + static const String assured_workload_rounded = 'assured_workload_rounded'; + static const String assured_workload_sharp = 'assured_workload_sharp'; + static const String atm = 'atm'; + static const String atm_outlined = 'atm_outlined'; + static const String atm_rounded = 'atm_rounded'; + static const String atm_sharp = 'atm_sharp'; + static const String attach_email = 'attach_email'; + static const String attach_email_outlined = 'attach_email_outlined'; + static const String attach_email_rounded = 'attach_email_rounded'; + static const String attach_email_sharp = 'attach_email_sharp'; + static const String attach_file = 'attach_file'; + static const String attach_file_outlined = 'attach_file_outlined'; + static const String attach_file_rounded = 'attach_file_rounded'; + static const String attach_file_sharp = 'attach_file_sharp'; + static const String attach_money = 'attach_money'; + static const String attach_money_outlined = 'attach_money_outlined'; + static const String attach_money_rounded = 'attach_money_rounded'; + static const String attach_money_sharp = 'attach_money_sharp'; + static const String attachment = 'attachment'; + static const String attachment_outlined = 'attachment_outlined'; + static const String attachment_rounded = 'attachment_rounded'; + static const String attachment_sharp = 'attachment_sharp'; + static const String attractions = 'attractions'; + static const String attractions_outlined = 'attractions_outlined'; + static const String attractions_rounded = 'attractions_rounded'; + static const String attractions_sharp = 'attractions_sharp'; + static const String attribution = 'attribution'; + static const String attribution_outlined = 'attribution_outlined'; + static const String attribution_rounded = 'attribution_rounded'; + static const String attribution_sharp = 'attribution_sharp'; + static const String audio_file = 'audio_file'; + static const String audio_file_outlined = 'audio_file_outlined'; + static const String audio_file_rounded = 'audio_file_rounded'; + static const String audio_file_sharp = 'audio_file_sharp'; + static const String audiotrack = 'audiotrack'; + static const String audiotrack_outlined = 'audiotrack_outlined'; + static const String audiotrack_rounded = 'audiotrack_rounded'; + static const String audiotrack_sharp = 'audiotrack_sharp'; + static const String auto_awesome = 'auto_awesome'; + static const String auto_awesome_mosaic = 'auto_awesome_mosaic'; + static const String auto_awesome_mosaic_outlined = + 'auto_awesome_mosaic_outlined'; + static const String auto_awesome_mosaic_rounded = + 'auto_awesome_mosaic_rounded'; + static const String auto_awesome_mosaic_sharp = 'auto_awesome_mosaic_sharp'; + static const String auto_awesome_motion = 'auto_awesome_motion'; + static const String auto_awesome_motion_outlined = + 'auto_awesome_motion_outlined'; + static const String auto_awesome_motion_rounded = + 'auto_awesome_motion_rounded'; + static const String auto_awesome_motion_sharp = 'auto_awesome_motion_sharp'; + static const String auto_awesome_outlined = 'auto_awesome_outlined'; + static const String auto_awesome_rounded = 'auto_awesome_rounded'; + static const String auto_awesome_sharp = 'auto_awesome_sharp'; + static const String auto_delete = 'auto_delete'; + static const String auto_delete_outlined = 'auto_delete_outlined'; + static const String auto_delete_rounded = 'auto_delete_rounded'; + static const String auto_delete_sharp = 'auto_delete_sharp'; + static const String auto_fix_high = 'auto_fix_high'; + static const String auto_fix_high_outlined = 'auto_fix_high_outlined'; + static const String auto_fix_high_rounded = 'auto_fix_high_rounded'; + static const String auto_fix_high_sharp = 'auto_fix_high_sharp'; + static const String auto_fix_normal = 'auto_fix_normal'; + static const String auto_fix_normal_outlined = 'auto_fix_normal_outlined'; + static const String auto_fix_normal_rounded = 'auto_fix_normal_rounded'; + static const String auto_fix_normal_sharp = 'auto_fix_normal_sharp'; + static const String auto_fix_off = 'auto_fix_off'; + static const String auto_fix_off_outlined = 'auto_fix_off_outlined'; + static const String auto_fix_off_rounded = 'auto_fix_off_rounded'; + static const String auto_fix_off_sharp = 'auto_fix_off_sharp'; + static const String auto_graph = 'auto_graph'; + static const String auto_graph_outlined = 'auto_graph_outlined'; + static const String auto_graph_rounded = 'auto_graph_rounded'; + static const String auto_graph_sharp = 'auto_graph_sharp'; + static const String auto_mode = 'auto_mode'; + static const String auto_mode_outlined = 'auto_mode_outlined'; + static const String auto_mode_rounded = 'auto_mode_rounded'; + static const String auto_mode_sharp = 'auto_mode_sharp'; + static const String auto_stories = 'auto_stories'; + static const String auto_stories_outlined = 'auto_stories_outlined'; + static const String auto_stories_rounded = 'auto_stories_rounded'; + static const String auto_stories_sharp = 'auto_stories_sharp'; + static const String autofps_select = 'autofps_select'; + static const String autofps_select_outlined = 'autofps_select_outlined'; + static const String autofps_select_rounded = 'autofps_select_rounded'; + static const String autofps_select_sharp = 'autofps_select_sharp'; + static const String autorenew = 'autorenew'; + static const String autorenew_outlined = 'autorenew_outlined'; + static const String autorenew_rounded = 'autorenew_rounded'; + static const String autorenew_sharp = 'autorenew_sharp'; + static const String av_timer = 'av_timer'; + static const String av_timer_outlined = 'av_timer_outlined'; + static const String av_timer_rounded = 'av_timer_rounded'; + static const String av_timer_sharp = 'av_timer_sharp'; + static const String baby_changing_station = 'baby_changing_station'; + static const String baby_changing_station_outlined = + 'baby_changing_station_outlined'; + static const String baby_changing_station_rounded = + 'baby_changing_station_rounded'; + static const String baby_changing_station_sharp = + 'baby_changing_station_sharp'; + static const String back_hand = 'back_hand'; + static const String back_hand_outlined = 'back_hand_outlined'; + static const String back_hand_rounded = 'back_hand_rounded'; + static const String back_hand_sharp = 'back_hand_sharp'; + static const String backpack = 'backpack'; + static const String backpack_outlined = 'backpack_outlined'; + static const String backpack_rounded = 'backpack_rounded'; + static const String backpack_sharp = 'backpack_sharp'; + static const String backspace = 'backspace'; + static const String backspace_outlined = 'backspace_outlined'; + static const String backspace_rounded = 'backspace_rounded'; + static const String backspace_sharp = 'backspace_sharp'; + static const String backup = 'backup'; + static const String backup_outlined = 'backup_outlined'; + static const String backup_rounded = 'backup_rounded'; + static const String backup_sharp = 'backup_sharp'; + static const String backup_table = 'backup_table'; + static const String backup_table_outlined = 'backup_table_outlined'; + static const String backup_table_rounded = 'backup_table_rounded'; + static const String backup_table_sharp = 'backup_table_sharp'; + static const String badge = 'badge'; + static const String badge_outlined = 'badge_outlined'; + static const String badge_rounded = 'badge_rounded'; + static const String badge_sharp = 'badge_sharp'; + static const String bakery_dining = 'bakery_dining'; + static const String bakery_dining_outlined = 'bakery_dining_outlined'; + static const String bakery_dining_rounded = 'bakery_dining_rounded'; + static const String bakery_dining_sharp = 'bakery_dining_sharp'; + static const String balance = 'balance'; + static const String balance_outlined = 'balance_outlined'; + static const String balance_rounded = 'balance_rounded'; + static const String balance_sharp = 'balance_sharp'; + static const String balcony = 'balcony'; + static const String balcony_outlined = 'balcony_outlined'; + static const String balcony_rounded = 'balcony_rounded'; + static const String balcony_sharp = 'balcony_sharp'; + static const String ballot = 'ballot'; + static const String ballot_outlined = 'ballot_outlined'; + static const String ballot_rounded = 'ballot_rounded'; + static const String ballot_sharp = 'ballot_sharp'; + static const String bar_chart = 'bar_chart'; + static const String bar_chart_outlined = 'bar_chart_outlined'; + static const String bar_chart_rounded = 'bar_chart_rounded'; + static const String bar_chart_sharp = 'bar_chart_sharp'; + static const String batch_prediction = 'batch_prediction'; + static const String batch_prediction_outlined = 'batch_prediction_outlined'; + static const String batch_prediction_rounded = 'batch_prediction_rounded'; + static const String batch_prediction_sharp = 'batch_prediction_sharp'; + static const String bathroom = 'bathroom'; + static const String bathroom_outlined = 'bathroom_outlined'; + static const String bathroom_rounded = 'bathroom_rounded'; + static const String bathroom_sharp = 'bathroom_sharp'; + static const String bathtub = 'bathtub'; + static const String bathtub_outlined = 'bathtub_outlined'; + static const String bathtub_rounded = 'bathtub_rounded'; + static const String bathtub_sharp = 'bathtub_sharp'; + static const String battery_0_bar = 'battery_0_bar'; + static const String battery_0_bar_outlined = 'battery_0_bar_outlined'; + static const String battery_0_bar_rounded = 'battery_0_bar_rounded'; + static const String battery_0_bar_sharp = 'battery_0_bar_sharp'; + static const String battery_1_bar = 'battery_1_bar'; + static const String battery_1_bar_outlined = 'battery_1_bar_outlined'; + static const String battery_1_bar_rounded = 'battery_1_bar_rounded'; + static const String battery_1_bar_sharp = 'battery_1_bar_sharp'; + static const String battery_2_bar = 'battery_2_bar'; + static const String battery_2_bar_outlined = 'battery_2_bar_outlined'; + static const String battery_2_bar_rounded = 'battery_2_bar_rounded'; + static const String battery_2_bar_sharp = 'battery_2_bar_sharp'; + static const String battery_3_bar = 'battery_3_bar'; + static const String battery_3_bar_outlined = 'battery_3_bar_outlined'; + static const String battery_3_bar_rounded = 'battery_3_bar_rounded'; + static const String battery_3_bar_sharp = 'battery_3_bar_sharp'; + static const String battery_4_bar = 'battery_4_bar'; + static const String battery_4_bar_outlined = 'battery_4_bar_outlined'; + static const String battery_4_bar_rounded = 'battery_4_bar_rounded'; + static const String battery_4_bar_sharp = 'battery_4_bar_sharp'; + static const String battery_5_bar = 'battery_5_bar'; + static const String battery_5_bar_outlined = 'battery_5_bar_outlined'; + static const String battery_5_bar_rounded = 'battery_5_bar_rounded'; + static const String battery_5_bar_sharp = 'battery_5_bar_sharp'; + static const String battery_6_bar = 'battery_6_bar'; + static const String battery_6_bar_outlined = 'battery_6_bar_outlined'; + static const String battery_6_bar_rounded = 'battery_6_bar_rounded'; + static const String battery_6_bar_sharp = 'battery_6_bar_sharp'; + static const String battery_alert = 'battery_alert'; + static const String battery_alert_outlined = 'battery_alert_outlined'; + static const String battery_alert_rounded = 'battery_alert_rounded'; + static const String battery_alert_sharp = 'battery_alert_sharp'; + static const String battery_charging_full = 'battery_charging_full'; + static const String battery_charging_full_outlined = + 'battery_charging_full_outlined'; + static const String battery_charging_full_rounded = + 'battery_charging_full_rounded'; + static const String battery_charging_full_sharp = + 'battery_charging_full_sharp'; + static const String battery_full = 'battery_full'; + static const String battery_full_outlined = 'battery_full_outlined'; + static const String battery_full_rounded = 'battery_full_rounded'; + static const String battery_full_sharp = 'battery_full_sharp'; + static const String battery_saver = 'battery_saver'; + static const String battery_saver_outlined = 'battery_saver_outlined'; + static const String battery_saver_rounded = 'battery_saver_rounded'; + static const String battery_saver_sharp = 'battery_saver_sharp'; + static const String battery_std = 'battery_std'; + static const String battery_std_outlined = 'battery_std_outlined'; + static const String battery_std_rounded = 'battery_std_rounded'; + static const String battery_std_sharp = 'battery_std_sharp'; + static const String battery_unknown = 'battery_unknown'; + static const String battery_unknown_outlined = 'battery_unknown_outlined'; + static const String battery_unknown_rounded = 'battery_unknown_rounded'; + static const String battery_unknown_sharp = 'battery_unknown_sharp'; + static const String beach_access = 'beach_access'; + static const String beach_access_outlined = 'beach_access_outlined'; + static const String beach_access_rounded = 'beach_access_rounded'; + static const String beach_access_sharp = 'beach_access_sharp'; + static const String bed = 'bed'; + static const String bed_outlined = 'bed_outlined'; + static const String bed_rounded = 'bed_rounded'; + static const String bed_sharp = 'bed_sharp'; + static const String bedroom_baby = 'bedroom_baby'; + static const String bedroom_baby_outlined = 'bedroom_baby_outlined'; + static const String bedroom_baby_rounded = 'bedroom_baby_rounded'; + static const String bedroom_baby_sharp = 'bedroom_baby_sharp'; + static const String bedroom_child = 'bedroom_child'; + static const String bedroom_child_outlined = 'bedroom_child_outlined'; + static const String bedroom_child_rounded = 'bedroom_child_rounded'; + static const String bedroom_child_sharp = 'bedroom_child_sharp'; + static const String bedroom_parent = 'bedroom_parent'; + static const String bedroom_parent_outlined = 'bedroom_parent_outlined'; + static const String bedroom_parent_rounded = 'bedroom_parent_rounded'; + static const String bedroom_parent_sharp = 'bedroom_parent_sharp'; + static const String bedtime = 'bedtime'; + static const String bedtime_off = 'bedtime_off'; + static const String bedtime_off_outlined = 'bedtime_off_outlined'; + static const String bedtime_off_rounded = 'bedtime_off_rounded'; + static const String bedtime_off_sharp = 'bedtime_off_sharp'; + static const String bedtime_outlined = 'bedtime_outlined'; + static const String bedtime_rounded = 'bedtime_rounded'; + static const String bedtime_sharp = 'bedtime_sharp'; + static const String beenhere = 'beenhere'; + static const String beenhere_outlined = 'beenhere_outlined'; + static const String beenhere_rounded = 'beenhere_rounded'; + static const String beenhere_sharp = 'beenhere_sharp'; + static const String bento = 'bento'; + static const String bento_outlined = 'bento_outlined'; + static const String bento_rounded = 'bento_rounded'; + static const String bento_sharp = 'bento_sharp'; + static const String bike_scooter = 'bike_scooter'; + static const String bike_scooter_outlined = 'bike_scooter_outlined'; + static const String bike_scooter_rounded = 'bike_scooter_rounded'; + static const String bike_scooter_sharp = 'bike_scooter_sharp'; + static const String biotech = 'biotech'; + static const String biotech_outlined = 'biotech_outlined'; + static const String biotech_rounded = 'biotech_rounded'; + static const String biotech_sharp = 'biotech_sharp'; + static const String blender = 'blender'; + static const String blender_outlined = 'blender_outlined'; + static const String blender_rounded = 'blender_rounded'; + static const String blender_sharp = 'blender_sharp'; + static const String blinds = 'blinds'; + static const String blinds_closed = 'blinds_closed'; + static const String blinds_closed_outlined = 'blinds_closed_outlined'; + static const String blinds_closed_rounded = 'blinds_closed_rounded'; + static const String blinds_closed_sharp = 'blinds_closed_sharp'; + static const String blinds_outlined = 'blinds_outlined'; + static const String blinds_rounded = 'blinds_rounded'; + static const String blinds_sharp = 'blinds_sharp'; + static const String block = 'block'; + static const String block_flipped = 'block_flipped'; + static const String block_outlined = 'block_outlined'; + static const String block_rounded = 'block_rounded'; + static const String block_sharp = 'block_sharp'; + static const String bloodtype = 'bloodtype'; + static const String bloodtype_outlined = 'bloodtype_outlined'; + static const String bloodtype_rounded = 'bloodtype_rounded'; + static const String bloodtype_sharp = 'bloodtype_sharp'; + static const String bluetooth = 'bluetooth'; + static const String bluetooth_audio = 'bluetooth_audio'; + static const String bluetooth_audio_outlined = 'bluetooth_audio_outlined'; + static const String bluetooth_audio_rounded = 'bluetooth_audio_rounded'; + static const String bluetooth_audio_sharp = 'bluetooth_audio_sharp'; + static const String bluetooth_connected = 'bluetooth_connected'; + static const String bluetooth_connected_outlined = + 'bluetooth_connected_outlined'; + static const String bluetooth_connected_rounded = + 'bluetooth_connected_rounded'; + static const String bluetooth_connected_sharp = 'bluetooth_connected_sharp'; + static const String bluetooth_disabled = 'bluetooth_disabled'; + static const String bluetooth_disabled_outlined = + 'bluetooth_disabled_outlined'; + static const String bluetooth_disabled_rounded = 'bluetooth_disabled_rounded'; + static const String bluetooth_disabled_sharp = 'bluetooth_disabled_sharp'; + static const String bluetooth_drive = 'bluetooth_drive'; + static const String bluetooth_drive_outlined = 'bluetooth_drive_outlined'; + static const String bluetooth_drive_rounded = 'bluetooth_drive_rounded'; + static const String bluetooth_drive_sharp = 'bluetooth_drive_sharp'; + static const String bluetooth_outlined = 'bluetooth_outlined'; + static const String bluetooth_rounded = 'bluetooth_rounded'; + static const String bluetooth_searching = 'bluetooth_searching'; + static const String bluetooth_searching_outlined = + 'bluetooth_searching_outlined'; + static const String bluetooth_searching_rounded = + 'bluetooth_searching_rounded'; + static const String bluetooth_searching_sharp = 'bluetooth_searching_sharp'; + static const String bluetooth_sharp = 'bluetooth_sharp'; + static const String blur_circular = 'blur_circular'; + static const String blur_circular_outlined = 'blur_circular_outlined'; + static const String blur_circular_rounded = 'blur_circular_rounded'; + static const String blur_circular_sharp = 'blur_circular_sharp'; + static const String blur_linear = 'blur_linear'; + static const String blur_linear_outlined = 'blur_linear_outlined'; + static const String blur_linear_rounded = 'blur_linear_rounded'; + static const String blur_linear_sharp = 'blur_linear_sharp'; + static const String blur_off = 'blur_off'; + static const String blur_off_outlined = 'blur_off_outlined'; + static const String blur_off_rounded = 'blur_off_rounded'; + static const String blur_off_sharp = 'blur_off_sharp'; + static const String blur_on = 'blur_on'; + static const String blur_on_outlined = 'blur_on_outlined'; + static const String blur_on_rounded = 'blur_on_rounded'; + static const String blur_on_sharp = 'blur_on_sharp'; + static const String bolt = 'bolt'; + static const String bolt_outlined = 'bolt_outlined'; + static const String bolt_rounded = 'bolt_rounded'; + static const String bolt_sharp = 'bolt_sharp'; + static const String book = 'book'; + static const String book_online = 'book_online'; + static const String book_online_outlined = 'book_online_outlined'; + static const String book_online_rounded = 'book_online_rounded'; + static const String book_online_sharp = 'book_online_sharp'; + static const String book_outlined = 'book_outlined'; + static const String book_rounded = 'book_rounded'; + static const String book_sharp = 'book_sharp'; + static const String bookmark = 'bookmark'; + static const String bookmark_add = 'bookmark_add'; + static const String bookmark_add_outlined = 'bookmark_add_outlined'; + static const String bookmark_add_rounded = 'bookmark_add_rounded'; + static const String bookmark_add_sharp = 'bookmark_add_sharp'; + static const String bookmark_added = 'bookmark_added'; + static const String bookmark_added_outlined = 'bookmark_added_outlined'; + static const String bookmark_added_rounded = 'bookmark_added_rounded'; + static const String bookmark_added_sharp = 'bookmark_added_sharp'; + static const String bookmark_border = 'bookmark_border'; + static const String bookmark_border_outlined = 'bookmark_border_outlined'; + static const String bookmark_border_rounded = 'bookmark_border_rounded'; + static const String bookmark_border_sharp = 'bookmark_border_sharp'; + static const String bookmark_outline = 'bookmark_outline'; + static const String bookmark_outline_outlined = 'bookmark_outline_outlined'; + static const String bookmark_outline_rounded = 'bookmark_outline_rounded'; + static const String bookmark_outline_sharp = 'bookmark_outline_sharp'; + static const String bookmark_outlined = 'bookmark_outlined'; + static const String bookmark_remove = 'bookmark_remove'; + static const String bookmark_remove_outlined = 'bookmark_remove_outlined'; + static const String bookmark_remove_rounded = 'bookmark_remove_rounded'; + static const String bookmark_remove_sharp = 'bookmark_remove_sharp'; + static const String bookmark_rounded = 'bookmark_rounded'; + static const String bookmark_sharp = 'bookmark_sharp'; + static const String bookmarks = 'bookmarks'; + static const String bookmarks_outlined = 'bookmarks_outlined'; + static const String bookmarks_rounded = 'bookmarks_rounded'; + static const String bookmarks_sharp = 'bookmarks_sharp'; + static const String border_all = 'border_all'; + static const String border_all_outlined = 'border_all_outlined'; + static const String border_all_rounded = 'border_all_rounded'; + static const String border_all_sharp = 'border_all_sharp'; + static const String border_bottom = 'border_bottom'; + static const String border_bottom_outlined = 'border_bottom_outlined'; + static const String border_bottom_rounded = 'border_bottom_rounded'; + static const String border_bottom_sharp = 'border_bottom_sharp'; + static const String border_clear = 'border_clear'; + static const String border_clear_outlined = 'border_clear_outlined'; + static const String border_clear_rounded = 'border_clear_rounded'; + static const String border_clear_sharp = 'border_clear_sharp'; + static const String border_color = 'border_color'; + static const String border_color_outlined = 'border_color_outlined'; + static const String border_color_rounded = 'border_color_rounded'; + static const String border_color_sharp = 'border_color_sharp'; + static const String border_horizontal = 'border_horizontal'; + static const String border_horizontal_outlined = 'border_horizontal_outlined'; + static const String border_horizontal_rounded = 'border_horizontal_rounded'; + static const String border_horizontal_sharp = 'border_horizontal_sharp'; + static const String border_inner = 'border_inner'; + static const String border_inner_outlined = 'border_inner_outlined'; + static const String border_inner_rounded = 'border_inner_rounded'; + static const String border_inner_sharp = 'border_inner_sharp'; + static const String border_left = 'border_left'; + static const String border_left_outlined = 'border_left_outlined'; + static const String border_left_rounded = 'border_left_rounded'; + static const String border_left_sharp = 'border_left_sharp'; + static const String border_outer = 'border_outer'; + static const String border_outer_outlined = 'border_outer_outlined'; + static const String border_outer_rounded = 'border_outer_rounded'; + static const String border_outer_sharp = 'border_outer_sharp'; + static const String border_right = 'border_right'; + static const String border_right_outlined = 'border_right_outlined'; + static const String border_right_rounded = 'border_right_rounded'; + static const String border_right_sharp = 'border_right_sharp'; + static const String border_style = 'border_style'; + static const String border_style_outlined = 'border_style_outlined'; + static const String border_style_rounded = 'border_style_rounded'; + static const String border_style_sharp = 'border_style_sharp'; + static const String border_top = 'border_top'; + static const String border_top_outlined = 'border_top_outlined'; + static const String border_top_rounded = 'border_top_rounded'; + static const String border_top_sharp = 'border_top_sharp'; + static const String border_vertical = 'border_vertical'; + static const String border_vertical_outlined = 'border_vertical_outlined'; + static const String border_vertical_rounded = 'border_vertical_rounded'; + static const String border_vertical_sharp = 'border_vertical_sharp'; + static const String boy = 'boy'; + static const String boy_outlined = 'boy_outlined'; + static const String boy_rounded = 'boy_rounded'; + static const String boy_sharp = 'boy_sharp'; + static const String branding_watermark = 'branding_watermark'; + static const String branding_watermark_outlined = + 'branding_watermark_outlined'; + static const String branding_watermark_rounded = 'branding_watermark_rounded'; + static const String branding_watermark_sharp = 'branding_watermark_sharp'; + static const String breakfast_dining = 'breakfast_dining'; + static const String breakfast_dining_outlined = 'breakfast_dining_outlined'; + static const String breakfast_dining_rounded = 'breakfast_dining_rounded'; + static const String breakfast_dining_sharp = 'breakfast_dining_sharp'; + static const String brightness_1 = 'brightness_1'; + static const String brightness_1_outlined = 'brightness_1_outlined'; + static const String brightness_1_rounded = 'brightness_1_rounded'; + static const String brightness_1_sharp = 'brightness_1_sharp'; + static const String brightness_2 = 'brightness_2'; + static const String brightness_2_outlined = 'brightness_2_outlined'; + static const String brightness_2_rounded = 'brightness_2_rounded'; + static const String brightness_2_sharp = 'brightness_2_sharp'; + static const String brightness_3 = 'brightness_3'; + static const String brightness_3_outlined = 'brightness_3_outlined'; + static const String brightness_3_rounded = 'brightness_3_rounded'; + static const String brightness_3_sharp = 'brightness_3_sharp'; + static const String brightness_4 = 'brightness_4'; + static const String brightness_4_outlined = 'brightness_4_outlined'; + static const String brightness_4_rounded = 'brightness_4_rounded'; + static const String brightness_4_sharp = 'brightness_4_sharp'; + static const String brightness_5 = 'brightness_5'; + static const String brightness_5_outlined = 'brightness_5_outlined'; + static const String brightness_5_rounded = 'brightness_5_rounded'; + static const String brightness_5_sharp = 'brightness_5_sharp'; + static const String brightness_6 = 'brightness_6'; + static const String brightness_6_outlined = 'brightness_6_outlined'; + static const String brightness_6_rounded = 'brightness_6_rounded'; + static const String brightness_6_sharp = 'brightness_6_sharp'; + static const String brightness_7 = 'brightness_7'; + static const String brightness_7_outlined = 'brightness_7_outlined'; + static const String brightness_7_rounded = 'brightness_7_rounded'; + static const String brightness_7_sharp = 'brightness_7_sharp'; + static const String brightness_auto = 'brightness_auto'; + static const String brightness_auto_outlined = 'brightness_auto_outlined'; + static const String brightness_auto_rounded = 'brightness_auto_rounded'; + static const String brightness_auto_sharp = 'brightness_auto_sharp'; + static const String brightness_high = 'brightness_high'; + static const String brightness_high_outlined = 'brightness_high_outlined'; + static const String brightness_high_rounded = 'brightness_high_rounded'; + static const String brightness_high_sharp = 'brightness_high_sharp'; + static const String brightness_low = 'brightness_low'; + static const String brightness_low_outlined = 'brightness_low_outlined'; + static const String brightness_low_rounded = 'brightness_low_rounded'; + static const String brightness_low_sharp = 'brightness_low_sharp'; + static const String brightness_medium = 'brightness_medium'; + static const String brightness_medium_outlined = 'brightness_medium_outlined'; + static const String brightness_medium_rounded = 'brightness_medium_rounded'; + static const String brightness_medium_sharp = 'brightness_medium_sharp'; + static const String broadcast_on_home = 'broadcast_on_home'; + static const String broadcast_on_home_outlined = 'broadcast_on_home_outlined'; + static const String broadcast_on_home_rounded = 'broadcast_on_home_rounded'; + static const String broadcast_on_home_sharp = 'broadcast_on_home_sharp'; + static const String broadcast_on_personal = 'broadcast_on_personal'; + static const String broadcast_on_personal_outlined = + 'broadcast_on_personal_outlined'; + static const String broadcast_on_personal_rounded = + 'broadcast_on_personal_rounded'; + static const String broadcast_on_personal_sharp = + 'broadcast_on_personal_sharp'; + static const String broken_image = 'broken_image'; + static const String broken_image_outlined = 'broken_image_outlined'; + static const String broken_image_rounded = 'broken_image_rounded'; + static const String broken_image_sharp = 'broken_image_sharp'; + static const String browse_gallery = 'browse_gallery'; + static const String browse_gallery_outlined = 'browse_gallery_outlined'; + static const String browse_gallery_rounded = 'browse_gallery_rounded'; + static const String browse_gallery_sharp = 'browse_gallery_sharp'; + static const String browser_not_supported = 'browser_not_supported'; + static const String browser_not_supported_outlined = + 'browser_not_supported_outlined'; + static const String browser_not_supported_rounded = + 'browser_not_supported_rounded'; + static const String browser_not_supported_sharp = + 'browser_not_supported_sharp'; + static const String browser_updated = 'browser_updated'; + static const String browser_updated_outlined = 'browser_updated_outlined'; + static const String browser_updated_rounded = 'browser_updated_rounded'; + static const String browser_updated_sharp = 'browser_updated_sharp'; + static const String brunch_dining = 'brunch_dining'; + static const String brunch_dining_outlined = 'brunch_dining_outlined'; + static const String brunch_dining_rounded = 'brunch_dining_rounded'; + static const String brunch_dining_sharp = 'brunch_dining_sharp'; + static const String brush = 'brush'; + static const String brush_outlined = 'brush_outlined'; + static const String brush_rounded = 'brush_rounded'; + static const String brush_sharp = 'brush_sharp'; + static const String bubble_chart = 'bubble_chart'; + static const String bubble_chart_outlined = 'bubble_chart_outlined'; + static const String bubble_chart_rounded = 'bubble_chart_rounded'; + static const String bubble_chart_sharp = 'bubble_chart_sharp'; + static const String bug_report = 'bug_report'; + static const String bug_report_outlined = 'bug_report_outlined'; + static const String bug_report_rounded = 'bug_report_rounded'; + static const String bug_report_sharp = 'bug_report_sharp'; + static const String build = 'build'; + static const String build_circle = 'build_circle'; + static const String build_circle_outlined = 'build_circle_outlined'; + static const String build_circle_rounded = 'build_circle_rounded'; + static const String build_circle_sharp = 'build_circle_sharp'; + static const String build_outlined = 'build_outlined'; + static const String build_rounded = 'build_rounded'; + static const String build_sharp = 'build_sharp'; + static const String bungalow = 'bungalow'; + static const String bungalow_outlined = 'bungalow_outlined'; + static const String bungalow_rounded = 'bungalow_rounded'; + static const String bungalow_sharp = 'bungalow_sharp'; + static const String burst_mode = 'burst_mode'; + static const String burst_mode_outlined = 'burst_mode_outlined'; + static const String burst_mode_rounded = 'burst_mode_rounded'; + static const String burst_mode_sharp = 'burst_mode_sharp'; + static const String bus_alert = 'bus_alert'; + static const String bus_alert_outlined = 'bus_alert_outlined'; + static const String bus_alert_rounded = 'bus_alert_rounded'; + static const String bus_alert_sharp = 'bus_alert_sharp'; + static const String business = 'business'; + static const String business_center = 'business_center'; + static const String business_center_outlined = 'business_center_outlined'; + static const String business_center_rounded = 'business_center_rounded'; + static const String business_center_sharp = 'business_center_sharp'; + static const String business_outlined = 'business_outlined'; + static const String business_rounded = 'business_rounded'; + static const String business_sharp = 'business_sharp'; + static const String cabin = 'cabin'; + static const String cabin_outlined = 'cabin_outlined'; + static const String cabin_rounded = 'cabin_rounded'; + static const String cabin_sharp = 'cabin_sharp'; + static const String cable = 'cable'; + static const String cable_outlined = 'cable_outlined'; + static const String cable_rounded = 'cable_rounded'; + static const String cable_sharp = 'cable_sharp'; + static const String cached = 'cached'; + static const String cached_outlined = 'cached_outlined'; + static const String cached_rounded = 'cached_rounded'; + static const String cached_sharp = 'cached_sharp'; + static const String cake = 'cake'; + static const String cake_outlined = 'cake_outlined'; + static const String cake_rounded = 'cake_rounded'; + static const String cake_sharp = 'cake_sharp'; + static const String calculate = 'calculate'; + static const String calculate_outlined = 'calculate_outlined'; + static const String calculate_rounded = 'calculate_rounded'; + static const String calculate_sharp = 'calculate_sharp'; + static const String calendar_month = 'calendar_month'; + static const String calendar_month_outlined = 'calendar_month_outlined'; + static const String calendar_month_rounded = 'calendar_month_rounded'; + static const String calendar_month_sharp = 'calendar_month_sharp'; + static const String calendar_today = 'calendar_today'; + static const String calendar_today_outlined = 'calendar_today_outlined'; + static const String calendar_today_rounded = 'calendar_today_rounded'; + static const String calendar_today_sharp = 'calendar_today_sharp'; + static const String calendar_view_day = 'calendar_view_day'; + static const String calendar_view_day_outlined = 'calendar_view_day_outlined'; + static const String calendar_view_day_rounded = 'calendar_view_day_rounded'; + static const String calendar_view_day_sharp = 'calendar_view_day_sharp'; + static const String calendar_view_month = 'calendar_view_month'; + static const String calendar_view_month_outlined = + 'calendar_view_month_outlined'; + static const String calendar_view_month_rounded = + 'calendar_view_month_rounded'; + static const String calendar_view_month_sharp = 'calendar_view_month_sharp'; + static const String calendar_view_week = 'calendar_view_week'; + static const String calendar_view_week_outlined = + 'calendar_view_week_outlined'; + static const String calendar_view_week_rounded = 'calendar_view_week_rounded'; + static const String calendar_view_week_sharp = 'calendar_view_week_sharp'; + static const String call = 'call'; + static const String call_end = 'call_end'; + static const String call_end_outlined = 'call_end_outlined'; + static const String call_end_rounded = 'call_end_rounded'; + static const String call_end_sharp = 'call_end_sharp'; + static const String call_made = 'call_made'; + static const String call_made_outlined = 'call_made_outlined'; + static const String call_made_rounded = 'call_made_rounded'; + static const String call_made_sharp = 'call_made_sharp'; + static const String call_merge = 'call_merge'; + static const String call_merge_outlined = 'call_merge_outlined'; + static const String call_merge_rounded = 'call_merge_rounded'; + static const String call_merge_sharp = 'call_merge_sharp'; + static const String call_missed = 'call_missed'; + static const String call_missed_outgoing = 'call_missed_outgoing'; + static const String call_missed_outgoing_outlined = + 'call_missed_outgoing_outlined'; + static const String call_missed_outgoing_rounded = + 'call_missed_outgoing_rounded'; + static const String call_missed_outgoing_sharp = 'call_missed_outgoing_sharp'; + static const String call_missed_outlined = 'call_missed_outlined'; + static const String call_missed_rounded = 'call_missed_rounded'; + static const String call_missed_sharp = 'call_missed_sharp'; + static const String call_outlined = 'call_outlined'; + static const String call_received = 'call_received'; + static const String call_received_outlined = 'call_received_outlined'; + static const String call_received_rounded = 'call_received_rounded'; + static const String call_received_sharp = 'call_received_sharp'; + static const String call_rounded = 'call_rounded'; + static const String call_sharp = 'call_sharp'; + static const String call_split = 'call_split'; + static const String call_split_outlined = 'call_split_outlined'; + static const String call_split_rounded = 'call_split_rounded'; + static const String call_split_sharp = 'call_split_sharp'; + static const String call_to_action = 'call_to_action'; + static const String call_to_action_outlined = 'call_to_action_outlined'; + static const String call_to_action_rounded = 'call_to_action_rounded'; + static const String call_to_action_sharp = 'call_to_action_sharp'; + static const String camera = 'camera'; + static const String camera_alt = 'camera_alt'; + static const String camera_alt_outlined = 'camera_alt_outlined'; + static const String camera_alt_rounded = 'camera_alt_rounded'; + static const String camera_alt_sharp = 'camera_alt_sharp'; + static const String camera_enhance = 'camera_enhance'; + static const String camera_enhance_outlined = 'camera_enhance_outlined'; + static const String camera_enhance_rounded = 'camera_enhance_rounded'; + static const String camera_enhance_sharp = 'camera_enhance_sharp'; + static const String camera_front = 'camera_front'; + static const String camera_front_outlined = 'camera_front_outlined'; + static const String camera_front_rounded = 'camera_front_rounded'; + static const String camera_front_sharp = 'camera_front_sharp'; + static const String camera_indoor = 'camera_indoor'; + static const String camera_indoor_outlined = 'camera_indoor_outlined'; + static const String camera_indoor_rounded = 'camera_indoor_rounded'; + static const String camera_indoor_sharp = 'camera_indoor_sharp'; + static const String camera_outdoor = 'camera_outdoor'; + static const String camera_outdoor_outlined = 'camera_outdoor_outlined'; + static const String camera_outdoor_rounded = 'camera_outdoor_rounded'; + static const String camera_outdoor_sharp = 'camera_outdoor_sharp'; + static const String camera_outlined = 'camera_outlined'; + static const String camera_rear = 'camera_rear'; + static const String camera_rear_outlined = 'camera_rear_outlined'; + static const String camera_rear_rounded = 'camera_rear_rounded'; + static const String camera_rear_sharp = 'camera_rear_sharp'; + static const String camera_roll = 'camera_roll'; + static const String camera_roll_outlined = 'camera_roll_outlined'; + static const String camera_roll_rounded = 'camera_roll_rounded'; + static const String camera_roll_sharp = 'camera_roll_sharp'; + static const String camera_rounded = 'camera_rounded'; + static const String camera_sharp = 'camera_sharp'; + static const String cameraswitch = 'cameraswitch'; + static const String cameraswitch_outlined = 'cameraswitch_outlined'; + static const String cameraswitch_rounded = 'cameraswitch_rounded'; + static const String cameraswitch_sharp = 'cameraswitch_sharp'; + static const String campaign = 'campaign'; + static const String campaign_outlined = 'campaign_outlined'; + static const String campaign_rounded = 'campaign_rounded'; + static const String campaign_sharp = 'campaign_sharp'; + static const String cancel = 'cancel'; + static const String cancel_outlined = 'cancel_outlined'; + static const String cancel_presentation = 'cancel_presentation'; + static const String cancel_presentation_outlined = + 'cancel_presentation_outlined'; + static const String cancel_presentation_rounded = + 'cancel_presentation_rounded'; + static const String cancel_presentation_sharp = 'cancel_presentation_sharp'; + static const String cancel_rounded = 'cancel_rounded'; + static const String cancel_schedule_send = 'cancel_schedule_send'; + static const String cancel_schedule_send_outlined = + 'cancel_schedule_send_outlined'; + static const String cancel_schedule_send_rounded = + 'cancel_schedule_send_rounded'; + static const String cancel_schedule_send_sharp = 'cancel_schedule_send_sharp'; + static const String cancel_sharp = 'cancel_sharp'; + static const String candlestick_chart = 'candlestick_chart'; + static const String candlestick_chart_outlined = 'candlestick_chart_outlined'; + static const String candlestick_chart_rounded = 'candlestick_chart_rounded'; + static const String candlestick_chart_sharp = 'candlestick_chart_sharp'; + static const String car_crash = 'car_crash'; + static const String car_crash_outlined = 'car_crash_outlined'; + static const String car_crash_rounded = 'car_crash_rounded'; + static const String car_crash_sharp = 'car_crash_sharp'; + static const String car_rental = 'car_rental'; + static const String car_rental_outlined = 'car_rental_outlined'; + static const String car_rental_rounded = 'car_rental_rounded'; + static const String car_rental_sharp = 'car_rental_sharp'; + static const String car_repair = 'car_repair'; + static const String car_repair_outlined = 'car_repair_outlined'; + static const String car_repair_rounded = 'car_repair_rounded'; + static const String car_repair_sharp = 'car_repair_sharp'; + static const String card_giftcard = 'card_giftcard'; + static const String card_giftcard_outlined = 'card_giftcard_outlined'; + static const String card_giftcard_rounded = 'card_giftcard_rounded'; + static const String card_giftcard_sharp = 'card_giftcard_sharp'; + static const String card_membership = 'card_membership'; + static const String card_membership_outlined = 'card_membership_outlined'; + static const String card_membership_rounded = 'card_membership_rounded'; + static const String card_membership_sharp = 'card_membership_sharp'; + static const String card_travel = 'card_travel'; + static const String card_travel_outlined = 'card_travel_outlined'; + static const String card_travel_rounded = 'card_travel_rounded'; + static const String card_travel_sharp = 'card_travel_sharp'; + static const String carpenter = 'carpenter'; + static const String carpenter_outlined = 'carpenter_outlined'; + static const String carpenter_rounded = 'carpenter_rounded'; + static const String carpenter_sharp = 'carpenter_sharp'; + static const String cases = 'cases'; + static const String cases_outlined = 'cases_outlined'; + static const String cases_rounded = 'cases_rounded'; + static const String cases_sharp = 'cases_sharp'; + static const String casino = 'casino'; + static const String casino_outlined = 'casino_outlined'; + static const String casino_rounded = 'casino_rounded'; + static const String casino_sharp = 'casino_sharp'; + static const String cast = 'cast'; + static const String cast_connected = 'cast_connected'; + static const String cast_connected_outlined = 'cast_connected_outlined'; + static const String cast_connected_rounded = 'cast_connected_rounded'; + static const String cast_connected_sharp = 'cast_connected_sharp'; + static const String cast_for_education = 'cast_for_education'; + static const String cast_for_education_outlined = + 'cast_for_education_outlined'; + static const String cast_for_education_rounded = 'cast_for_education_rounded'; + static const String cast_for_education_sharp = 'cast_for_education_sharp'; + static const String cast_outlined = 'cast_outlined'; + static const String cast_rounded = 'cast_rounded'; + static const String cast_sharp = 'cast_sharp'; + static const String castle = 'castle'; + static const String castle_outlined = 'castle_outlined'; + static const String castle_rounded = 'castle_rounded'; + static const String castle_sharp = 'castle_sharp'; + static const String catching_pokemon = 'catching_pokemon'; + static const String catching_pokemon_outlined = 'catching_pokemon_outlined'; + static const String catching_pokemon_rounded = 'catching_pokemon_rounded'; + static const String catching_pokemon_sharp = 'catching_pokemon_sharp'; + static const String category = 'category'; + static const String category_outlined = 'category_outlined'; + static const String category_rounded = 'category_rounded'; + static const String category_sharp = 'category_sharp'; + static const String celebration = 'celebration'; + static const String celebration_outlined = 'celebration_outlined'; + static const String celebration_rounded = 'celebration_rounded'; + static const String celebration_sharp = 'celebration_sharp'; + static const String cell_tower = 'cell_tower'; + static const String cell_tower_outlined = 'cell_tower_outlined'; + static const String cell_tower_rounded = 'cell_tower_rounded'; + static const String cell_tower_sharp = 'cell_tower_sharp'; + static const String cell_wifi = 'cell_wifi'; + static const String cell_wifi_outlined = 'cell_wifi_outlined'; + static const String cell_wifi_rounded = 'cell_wifi_rounded'; + static const String cell_wifi_sharp = 'cell_wifi_sharp'; + static const String center_focus_strong = 'center_focus_strong'; + static const String center_focus_strong_outlined = + 'center_focus_strong_outlined'; + static const String center_focus_strong_rounded = + 'center_focus_strong_rounded'; + static const String center_focus_strong_sharp = 'center_focus_strong_sharp'; + static const String center_focus_weak = 'center_focus_weak'; + static const String center_focus_weak_outlined = 'center_focus_weak_outlined'; + static const String center_focus_weak_rounded = 'center_focus_weak_rounded'; + static const String center_focus_weak_sharp = 'center_focus_weak_sharp'; + static const String chair = 'chair'; + static const String chair_alt = 'chair_alt'; + static const String chair_alt_outlined = 'chair_alt_outlined'; + static const String chair_alt_rounded = 'chair_alt_rounded'; + static const String chair_alt_sharp = 'chair_alt_sharp'; + static const String chair_outlined = 'chair_outlined'; + static const String chair_rounded = 'chair_rounded'; + static const String chair_sharp = 'chair_sharp'; + static const String chalet = 'chalet'; + static const String chalet_outlined = 'chalet_outlined'; + static const String chalet_rounded = 'chalet_rounded'; + static const String chalet_sharp = 'chalet_sharp'; + static const String change_circle = 'change_circle'; + static const String change_circle_outlined = 'change_circle_outlined'; + static const String change_circle_rounded = 'change_circle_rounded'; + static const String change_circle_sharp = 'change_circle_sharp'; + static const String change_history = 'change_history'; + static const String change_history_outlined = 'change_history_outlined'; + static const String change_history_rounded = 'change_history_rounded'; + static const String change_history_sharp = 'change_history_sharp'; + static const String charging_station = 'charging_station'; + static const String charging_station_outlined = 'charging_station_outlined'; + static const String charging_station_rounded = 'charging_station_rounded'; + static const String charging_station_sharp = 'charging_station_sharp'; + static const String chat = 'chat'; + static const String chat_bubble = 'chat_bubble'; + static const String chat_bubble_outline = 'chat_bubble_outline'; + static const String chat_bubble_outline_outlined = + 'chat_bubble_outline_outlined'; + static const String chat_bubble_outline_rounded = + 'chat_bubble_outline_rounded'; + static const String chat_bubble_outline_sharp = 'chat_bubble_outline_sharp'; + static const String chat_bubble_outlined = 'chat_bubble_outlined'; + static const String chat_bubble_rounded = 'chat_bubble_rounded'; + static const String chat_bubble_sharp = 'chat_bubble_sharp'; + static const String chat_outlined = 'chat_outlined'; + static const String chat_rounded = 'chat_rounded'; + static const String chat_sharp = 'chat_sharp'; + static const String check = 'check'; + static const String check_box = 'check_box'; + static const String check_box_outline_blank = 'check_box_outline_blank'; + static const String check_box_outline_blank_outlined = + 'check_box_outline_blank_outlined'; + static const String check_box_outline_blank_rounded = + 'check_box_outline_blank_rounded'; + static const String check_box_outline_blank_sharp = + 'check_box_outline_blank_sharp'; + static const String check_box_outlined = 'check_box_outlined'; + static const String check_box_rounded = 'check_box_rounded'; + static const String check_box_sharp = 'check_box_sharp'; + static const String check_circle = 'check_circle'; + static const String check_circle_outline = 'check_circle_outline'; + static const String check_circle_outline_outlined = + 'check_circle_outline_outlined'; + static const String check_circle_outline_rounded = + 'check_circle_outline_rounded'; + static const String check_circle_outline_sharp = 'check_circle_outline_sharp'; + static const String check_circle_outlined = 'check_circle_outlined'; + static const String check_circle_rounded = 'check_circle_rounded'; + static const String check_circle_sharp = 'check_circle_sharp'; + static const String check_outlined = 'check_outlined'; + static const String check_rounded = 'check_rounded'; + static const String check_sharp = 'check_sharp'; + static const String checklist = 'checklist'; + static const String checklist_outlined = 'checklist_outlined'; + static const String checklist_rounded = 'checklist_rounded'; + static const String checklist_rtl = 'checklist_rtl'; + static const String checklist_rtl_outlined = 'checklist_rtl_outlined'; + static const String checklist_rtl_rounded = 'checklist_rtl_rounded'; + static const String checklist_rtl_sharp = 'checklist_rtl_sharp'; + static const String checklist_sharp = 'checklist_sharp'; + static const String checkroom = 'checkroom'; + static const String checkroom_outlined = 'checkroom_outlined'; + static const String checkroom_rounded = 'checkroom_rounded'; + static const String checkroom_sharp = 'checkroom_sharp'; + static const String chevron_left = 'chevron_left'; + static const String chevron_left_outlined = 'chevron_left_outlined'; + static const String chevron_left_rounded = 'chevron_left_rounded'; + static const String chevron_left_sharp = 'chevron_left_sharp'; + static const String chevron_right = 'chevron_right'; + static const String chevron_right_outlined = 'chevron_right_outlined'; + static const String chevron_right_rounded = 'chevron_right_rounded'; + static const String chevron_right_sharp = 'chevron_right_sharp'; + static const String child_care = 'child_care'; + static const String child_care_outlined = 'child_care_outlined'; + static const String child_care_rounded = 'child_care_rounded'; + static const String child_care_sharp = 'child_care_sharp'; + static const String child_friendly = 'child_friendly'; + static const String child_friendly_outlined = 'child_friendly_outlined'; + static const String child_friendly_rounded = 'child_friendly_rounded'; + static const String child_friendly_sharp = 'child_friendly_sharp'; + static const String chrome_reader_mode = 'chrome_reader_mode'; + static const String chrome_reader_mode_outlined = + 'chrome_reader_mode_outlined'; + static const String chrome_reader_mode_rounded = 'chrome_reader_mode_rounded'; + static const String chrome_reader_mode_sharp = 'chrome_reader_mode_sharp'; + static const String church = 'church'; + static const String church_outlined = 'church_outlined'; + static const String church_rounded = 'church_rounded'; + static const String church_sharp = 'church_sharp'; + static const String circle = 'circle'; + static const String circle_notifications = 'circle_notifications'; + static const String circle_notifications_outlined = + 'circle_notifications_outlined'; + static const String circle_notifications_rounded = + 'circle_notifications_rounded'; + static const String circle_notifications_sharp = 'circle_notifications_sharp'; + static const String circle_outlined = 'circle_outlined'; + static const String circle_rounded = 'circle_rounded'; + static const String circle_sharp = 'circle_sharp'; + static const String class_ = 'class_'; + static const String class_outlined = 'class_outlined'; + static const String class_rounded = 'class_rounded'; + static const String class_sharp = 'class_sharp'; + static const String clean_hands = 'clean_hands'; + static const String clean_hands_outlined = 'clean_hands_outlined'; + static const String clean_hands_rounded = 'clean_hands_rounded'; + static const String clean_hands_sharp = 'clean_hands_sharp'; + static const String cleaning_services = 'cleaning_services'; + static const String cleaning_services_outlined = 'cleaning_services_outlined'; + static const String cleaning_services_rounded = 'cleaning_services_rounded'; + static const String cleaning_services_sharp = 'cleaning_services_sharp'; + static const String clear = 'clear'; + static const String clear_all = 'clear_all'; + static const String clear_all_outlined = 'clear_all_outlined'; + static const String clear_all_rounded = 'clear_all_rounded'; + static const String clear_all_sharp = 'clear_all_sharp'; + static const String clear_outlined = 'clear_outlined'; + static const String clear_rounded = 'clear_rounded'; + static const String clear_sharp = 'clear_sharp'; + static const String close = 'close'; + static const String close_fullscreen = 'close_fullscreen'; + static const String close_fullscreen_outlined = 'close_fullscreen_outlined'; + static const String close_fullscreen_rounded = 'close_fullscreen_rounded'; + static const String close_fullscreen_sharp = 'close_fullscreen_sharp'; + static const String close_outlined = 'close_outlined'; + static const String close_rounded = 'close_rounded'; + static const String close_sharp = 'close_sharp'; + static const String closed_caption = 'closed_caption'; + static const String closed_caption_disabled = 'closed_caption_disabled'; + static const String closed_caption_disabled_outlined = + 'closed_caption_disabled_outlined'; + static const String closed_caption_disabled_rounded = + 'closed_caption_disabled_rounded'; + static const String closed_caption_disabled_sharp = + 'closed_caption_disabled_sharp'; + static const String closed_caption_off = 'closed_caption_off'; + static const String closed_caption_off_outlined = + 'closed_caption_off_outlined'; + static const String closed_caption_off_rounded = 'closed_caption_off_rounded'; + static const String closed_caption_off_sharp = 'closed_caption_off_sharp'; + static const String closed_caption_outlined = 'closed_caption_outlined'; + static const String closed_caption_rounded = 'closed_caption_rounded'; + static const String closed_caption_sharp = 'closed_caption_sharp'; + static const String cloud = 'cloud'; + static const String cloud_circle = 'cloud_circle'; + static const String cloud_circle_outlined = 'cloud_circle_outlined'; + static const String cloud_circle_rounded = 'cloud_circle_rounded'; + static const String cloud_circle_sharp = 'cloud_circle_sharp'; + static const String cloud_done = 'cloud_done'; + static const String cloud_done_outlined = 'cloud_done_outlined'; + static const String cloud_done_rounded = 'cloud_done_rounded'; + static const String cloud_done_sharp = 'cloud_done_sharp'; + static const String cloud_download = 'cloud_download'; + static const String cloud_download_outlined = 'cloud_download_outlined'; + static const String cloud_download_rounded = 'cloud_download_rounded'; + static const String cloud_download_sharp = 'cloud_download_sharp'; + static const String cloud_off = 'cloud_off'; + static const String cloud_off_outlined = 'cloud_off_outlined'; + static const String cloud_off_rounded = 'cloud_off_rounded'; + static const String cloud_off_sharp = 'cloud_off_sharp'; + static const String cloud_outlined = 'cloud_outlined'; + static const String cloud_queue = 'cloud_queue'; + static const String cloud_queue_outlined = 'cloud_queue_outlined'; + static const String cloud_queue_rounded = 'cloud_queue_rounded'; + static const String cloud_queue_sharp = 'cloud_queue_sharp'; + static const String cloud_rounded = 'cloud_rounded'; + static const String cloud_sharp = 'cloud_sharp'; + static const String cloud_sync = 'cloud_sync'; + static const String cloud_sync_outlined = 'cloud_sync_outlined'; + static const String cloud_sync_rounded = 'cloud_sync_rounded'; + static const String cloud_sync_sharp = 'cloud_sync_sharp'; + static const String cloud_upload = 'cloud_upload'; + static const String cloud_upload_outlined = 'cloud_upload_outlined'; + static const String cloud_upload_rounded = 'cloud_upload_rounded'; + static const String cloud_upload_sharp = 'cloud_upload_sharp'; + static const String cloudy_snowing = 'cloudy_snowing'; + static const String co2 = 'co2'; + static const String co2_outlined = 'co2_outlined'; + static const String co2_rounded = 'co2_rounded'; + static const String co2_sharp = 'co2_sharp'; + static const String co_present = 'co_present'; + static const String co_present_outlined = 'co_present_outlined'; + static const String co_present_rounded = 'co_present_rounded'; + static const String co_present_sharp = 'co_present_sharp'; + static const String code = 'code'; + static const String code_off = 'code_off'; + static const String code_off_outlined = 'code_off_outlined'; + static const String code_off_rounded = 'code_off_rounded'; + static const String code_off_sharp = 'code_off_sharp'; + static const String code_outlined = 'code_outlined'; + static const String code_rounded = 'code_rounded'; + static const String code_sharp = 'code_sharp'; + static const String coffee = 'coffee'; + static const String coffee_maker = 'coffee_maker'; + static const String coffee_maker_outlined = 'coffee_maker_outlined'; + static const String coffee_maker_rounded = 'coffee_maker_rounded'; + static const String coffee_maker_sharp = 'coffee_maker_sharp'; + static const String coffee_outlined = 'coffee_outlined'; + static const String coffee_rounded = 'coffee_rounded'; + static const String coffee_sharp = 'coffee_sharp'; + static const String collections = 'collections'; + static const String collections_bookmark = 'collections_bookmark'; + static const String collections_bookmark_outlined = + 'collections_bookmark_outlined'; + static const String collections_bookmark_rounded = + 'collections_bookmark_rounded'; + static const String collections_bookmark_sharp = 'collections_bookmark_sharp'; + static const String collections_outlined = 'collections_outlined'; + static const String collections_rounded = 'collections_rounded'; + static const String collections_sharp = 'collections_sharp'; + static const String color_lens = 'color_lens'; + static const String color_lens_outlined = 'color_lens_outlined'; + static const String color_lens_rounded = 'color_lens_rounded'; + static const String color_lens_sharp = 'color_lens_sharp'; + static const String colorize = 'colorize'; + static const String colorize_outlined = 'colorize_outlined'; + static const String colorize_rounded = 'colorize_rounded'; + static const String colorize_sharp = 'colorize_sharp'; + static const String comment = 'comment'; + static const String comment_bank = 'comment_bank'; + static const String comment_bank_outlined = 'comment_bank_outlined'; + static const String comment_bank_rounded = 'comment_bank_rounded'; + static const String comment_bank_sharp = 'comment_bank_sharp'; + static const String comment_outlined = 'comment_outlined'; + static const String comment_rounded = 'comment_rounded'; + static const String comment_sharp = 'comment_sharp'; + static const String comments_disabled = 'comments_disabled'; + static const String comments_disabled_outlined = 'comments_disabled_outlined'; + static const String comments_disabled_rounded = 'comments_disabled_rounded'; + static const String comments_disabled_sharp = 'comments_disabled_sharp'; + static const String commit = 'commit'; + static const String commit_outlined = 'commit_outlined'; + static const String commit_rounded = 'commit_rounded'; + static const String commit_sharp = 'commit_sharp'; + static const String commute = 'commute'; + static const String commute_outlined = 'commute_outlined'; + static const String commute_rounded = 'commute_rounded'; + static const String commute_sharp = 'commute_sharp'; + static const String compare = 'compare'; + static const String compare_arrows = 'compare_arrows'; + static const String compare_arrows_outlined = 'compare_arrows_outlined'; + static const String compare_arrows_rounded = 'compare_arrows_rounded'; + static const String compare_arrows_sharp = 'compare_arrows_sharp'; + static const String compare_outlined = 'compare_outlined'; + static const String compare_rounded = 'compare_rounded'; + static const String compare_sharp = 'compare_sharp'; + static const String compass_calibration = 'compass_calibration'; + static const String compass_calibration_outlined = + 'compass_calibration_outlined'; + static const String compass_calibration_rounded = + 'compass_calibration_rounded'; + static const String compass_calibration_sharp = 'compass_calibration_sharp'; + static const String compost = 'compost'; + static const String compost_outlined = 'compost_outlined'; + static const String compost_rounded = 'compost_rounded'; + static const String compost_sharp = 'compost_sharp'; + static const String compress = 'compress'; + static const String compress_outlined = 'compress_outlined'; + static const String compress_rounded = 'compress_rounded'; + static const String compress_sharp = 'compress_sharp'; + static const String computer = 'computer'; + static const String computer_outlined = 'computer_outlined'; + static const String computer_rounded = 'computer_rounded'; + static const String computer_sharp = 'computer_sharp'; + static const String confirmation_num = 'confirmation_num'; + static const String confirmation_num_outlined = 'confirmation_num_outlined'; + static const String confirmation_num_rounded = 'confirmation_num_rounded'; + static const String confirmation_num_sharp = 'confirmation_num_sharp'; + static const String confirmation_number = 'confirmation_number'; + static const String confirmation_number_outlined = + 'confirmation_number_outlined'; + static const String confirmation_number_rounded = + 'confirmation_number_rounded'; + static const String confirmation_number_sharp = 'confirmation_number_sharp'; + static const String connect_without_contact = 'connect_without_contact'; + static const String connect_without_contact_outlined = + 'connect_without_contact_outlined'; + static const String connect_without_contact_rounded = + 'connect_without_contact_rounded'; + static const String connect_without_contact_sharp = + 'connect_without_contact_sharp'; + static const String connected_tv = 'connected_tv'; + static const String connected_tv_outlined = 'connected_tv_outlined'; + static const String connected_tv_rounded = 'connected_tv_rounded'; + static const String connected_tv_sharp = 'connected_tv_sharp'; + static const String connecting_airports = 'connecting_airports'; + static const String connecting_airports_outlined = + 'connecting_airports_outlined'; + static const String connecting_airports_rounded = + 'connecting_airports_rounded'; + static const String connecting_airports_sharp = 'connecting_airports_sharp'; + static const String construction = 'construction'; + static const String construction_outlined = 'construction_outlined'; + static const String construction_rounded = 'construction_rounded'; + static const String construction_sharp = 'construction_sharp'; + static const String contact_mail = 'contact_mail'; + static const String contact_mail_outlined = 'contact_mail_outlined'; + static const String contact_mail_rounded = 'contact_mail_rounded'; + static const String contact_mail_sharp = 'contact_mail_sharp'; + static const String contact_page = 'contact_page'; + static const String contact_page_outlined = 'contact_page_outlined'; + static const String contact_page_rounded = 'contact_page_rounded'; + static const String contact_page_sharp = 'contact_page_sharp'; + static const String contact_phone = 'contact_phone'; + static const String contact_phone_outlined = 'contact_phone_outlined'; + static const String contact_phone_rounded = 'contact_phone_rounded'; + static const String contact_phone_sharp = 'contact_phone_sharp'; + static const String contact_support = 'contact_support'; + static const String contact_support_outlined = 'contact_support_outlined'; + static const String contact_support_rounded = 'contact_support_rounded'; + static const String contact_support_sharp = 'contact_support_sharp'; + static const String contactless = 'contactless'; + static const String contactless_outlined = 'contactless_outlined'; + static const String contactless_rounded = 'contactless_rounded'; + static const String contactless_sharp = 'contactless_sharp'; + static const String contacts = 'contacts'; + static const String contacts_outlined = 'contacts_outlined'; + static const String contacts_rounded = 'contacts_rounded'; + static const String contacts_sharp = 'contacts_sharp'; + static const String content_copy = 'content_copy'; + static const String content_copy_outlined = 'content_copy_outlined'; + static const String content_copy_rounded = 'content_copy_rounded'; + static const String content_copy_sharp = 'content_copy_sharp'; + static const String content_cut = 'content_cut'; + static const String content_cut_outlined = 'content_cut_outlined'; + static const String content_cut_rounded = 'content_cut_rounded'; + static const String content_cut_sharp = 'content_cut_sharp'; + static const String content_paste = 'content_paste'; + static const String content_paste_go = 'content_paste_go'; + static const String content_paste_go_outlined = 'content_paste_go_outlined'; + static const String content_paste_go_rounded = 'content_paste_go_rounded'; + static const String content_paste_go_sharp = 'content_paste_go_sharp'; + static const String content_paste_off = 'content_paste_off'; + static const String content_paste_off_outlined = 'content_paste_off_outlined'; + static const String content_paste_off_rounded = 'content_paste_off_rounded'; + static const String content_paste_off_sharp = 'content_paste_off_sharp'; + static const String content_paste_outlined = 'content_paste_outlined'; + static const String content_paste_rounded = 'content_paste_rounded'; + static const String content_paste_search = 'content_paste_search'; + static const String content_paste_search_outlined = + 'content_paste_search_outlined'; + static const String content_paste_search_rounded = + 'content_paste_search_rounded'; + static const String content_paste_search_sharp = 'content_paste_search_sharp'; + static const String content_paste_sharp = 'content_paste_sharp'; + static const String contrast = 'contrast'; + static const String contrast_outlined = 'contrast_outlined'; + static const String contrast_rounded = 'contrast_rounded'; + static const String contrast_sharp = 'contrast_sharp'; + static const String control_camera = 'control_camera'; + static const String control_camera_outlined = 'control_camera_outlined'; + static const String control_camera_rounded = 'control_camera_rounded'; + static const String control_camera_sharp = 'control_camera_sharp'; + static const String control_point = 'control_point'; + static const String control_point_duplicate = 'control_point_duplicate'; + static const String control_point_duplicate_outlined = + 'control_point_duplicate_outlined'; + static const String control_point_duplicate_rounded = + 'control_point_duplicate_rounded'; + static const String control_point_duplicate_sharp = + 'control_point_duplicate_sharp'; + static const String control_point_outlined = 'control_point_outlined'; + static const String control_point_rounded = 'control_point_rounded'; + static const String control_point_sharp = 'control_point_sharp'; + static const String cookie = 'cookie'; + static const String cookie_outlined = 'cookie_outlined'; + static const String cookie_rounded = 'cookie_rounded'; + static const String cookie_sharp = 'cookie_sharp'; + static const String copy = 'copy'; + static const String copy_all = 'copy_all'; + static const String copy_all_outlined = 'copy_all_outlined'; + static const String copy_all_rounded = 'copy_all_rounded'; + static const String copy_all_sharp = 'copy_all_sharp'; + static const String copy_outlined = 'copy_outlined'; + static const String copy_rounded = 'copy_rounded'; + static const String copy_sharp = 'copy_sharp'; + static const String copyright = 'copyright'; + static const String copyright_outlined = 'copyright_outlined'; + static const String copyright_rounded = 'copyright_rounded'; + static const String copyright_sharp = 'copyright_sharp'; + static const String coronavirus = 'coronavirus'; + static const String coronavirus_outlined = 'coronavirus_outlined'; + static const String coronavirus_rounded = 'coronavirus_rounded'; + static const String coronavirus_sharp = 'coronavirus_sharp'; + static const String corporate_fare = 'corporate_fare'; + static const String corporate_fare_outlined = 'corporate_fare_outlined'; + static const String corporate_fare_rounded = 'corporate_fare_rounded'; + static const String corporate_fare_sharp = 'corporate_fare_sharp'; + static const String cottage = 'cottage'; + static const String cottage_outlined = 'cottage_outlined'; + static const String cottage_rounded = 'cottage_rounded'; + static const String cottage_sharp = 'cottage_sharp'; + static const String countertops = 'countertops'; + static const String countertops_outlined = 'countertops_outlined'; + static const String countertops_rounded = 'countertops_rounded'; + static const String countertops_sharp = 'countertops_sharp'; + static const String create = 'create'; + static const String create_new_folder = 'create_new_folder'; + static const String create_new_folder_outlined = 'create_new_folder_outlined'; + static const String create_new_folder_rounded = 'create_new_folder_rounded'; + static const String create_new_folder_sharp = 'create_new_folder_sharp'; + static const String create_outlined = 'create_outlined'; + static const String create_rounded = 'create_rounded'; + static const String create_sharp = 'create_sharp'; + static const String credit_card = 'credit_card'; + static const String credit_card_off = 'credit_card_off'; + static const String credit_card_off_outlined = 'credit_card_off_outlined'; + static const String credit_card_off_rounded = 'credit_card_off_rounded'; + static const String credit_card_off_sharp = 'credit_card_off_sharp'; + static const String credit_card_outlined = 'credit_card_outlined'; + static const String credit_card_rounded = 'credit_card_rounded'; + static const String credit_card_sharp = 'credit_card_sharp'; + static const String credit_score = 'credit_score'; + static const String credit_score_outlined = 'credit_score_outlined'; + static const String credit_score_rounded = 'credit_score_rounded'; + static const String credit_score_sharp = 'credit_score_sharp'; + static const String crib = 'crib'; + static const String crib_outlined = 'crib_outlined'; + static const String crib_rounded = 'crib_rounded'; + static const String crib_sharp = 'crib_sharp'; + static const String crisis_alert = 'crisis_alert'; + static const String crisis_alert_outlined = 'crisis_alert_outlined'; + static const String crisis_alert_rounded = 'crisis_alert_rounded'; + static const String crisis_alert_sharp = 'crisis_alert_sharp'; + static const String crop = 'crop'; + static const String crop_16_9 = 'crop_16_9'; + static const String crop_16_9_outlined = 'crop_16_9_outlined'; + static const String crop_16_9_rounded = 'crop_16_9_rounded'; + static const String crop_16_9_sharp = 'crop_16_9_sharp'; + static const String crop_3_2 = 'crop_3_2'; + static const String crop_3_2_outlined = 'crop_3_2_outlined'; + static const String crop_3_2_rounded = 'crop_3_2_rounded'; + static const String crop_3_2_sharp = 'crop_3_2_sharp'; + static const String crop_5_4 = 'crop_5_4'; + static const String crop_5_4_outlined = 'crop_5_4_outlined'; + static const String crop_5_4_rounded = 'crop_5_4_rounded'; + static const String crop_5_4_sharp = 'crop_5_4_sharp'; + static const String crop_7_5 = 'crop_7_5'; + static const String crop_7_5_outlined = 'crop_7_5_outlined'; + static const String crop_7_5_rounded = 'crop_7_5_rounded'; + static const String crop_7_5_sharp = 'crop_7_5_sharp'; + static const String crop_din = 'crop_din'; + static const String crop_din_outlined = 'crop_din_outlined'; + static const String crop_din_rounded = 'crop_din_rounded'; + static const String crop_din_sharp = 'crop_din_sharp'; + static const String crop_free = 'crop_free'; + static const String crop_free_outlined = 'crop_free_outlined'; + static const String crop_free_rounded = 'crop_free_rounded'; + static const String crop_free_sharp = 'crop_free_sharp'; + static const String crop_landscape = 'crop_landscape'; + static const String crop_landscape_outlined = 'crop_landscape_outlined'; + static const String crop_landscape_rounded = 'crop_landscape_rounded'; + static const String crop_landscape_sharp = 'crop_landscape_sharp'; + static const String crop_original = 'crop_original'; + static const String crop_original_outlined = 'crop_original_outlined'; + static const String crop_original_rounded = 'crop_original_rounded'; + static const String crop_original_sharp = 'crop_original_sharp'; + static const String crop_outlined = 'crop_outlined'; + static const String crop_portrait = 'crop_portrait'; + static const String crop_portrait_outlined = 'crop_portrait_outlined'; + static const String crop_portrait_rounded = 'crop_portrait_rounded'; + static const String crop_portrait_sharp = 'crop_portrait_sharp'; + static const String crop_rotate = 'crop_rotate'; + static const String crop_rotate_outlined = 'crop_rotate_outlined'; + static const String crop_rotate_rounded = 'crop_rotate_rounded'; + static const String crop_rotate_sharp = 'crop_rotate_sharp'; + static const String crop_rounded = 'crop_rounded'; + static const String crop_sharp = 'crop_sharp'; + static const String crop_square = 'crop_square'; + static const String crop_square_outlined = 'crop_square_outlined'; + static const String crop_square_rounded = 'crop_square_rounded'; + static const String crop_square_sharp = 'crop_square_sharp'; + static const String cruelty_free = 'cruelty_free'; + static const String cruelty_free_outlined = 'cruelty_free_outlined'; + static const String cruelty_free_rounded = 'cruelty_free_rounded'; + static const String cruelty_free_sharp = 'cruelty_free_sharp'; + static const String css = 'css'; + static const String css_outlined = 'css_outlined'; + static const String css_rounded = 'css_rounded'; + static const String css_sharp = 'css_sharp'; + static const String currency_bitcoin = 'currency_bitcoin'; + static const String currency_bitcoin_outlined = 'currency_bitcoin_outlined'; + static const String currency_bitcoin_rounded = 'currency_bitcoin_rounded'; + static const String currency_bitcoin_sharp = 'currency_bitcoin_sharp'; + static const String currency_exchange = 'currency_exchange'; + static const String currency_exchange_outlined = 'currency_exchange_outlined'; + static const String currency_exchange_rounded = 'currency_exchange_rounded'; + static const String currency_exchange_sharp = 'currency_exchange_sharp'; + static const String currency_franc = 'currency_franc'; + static const String currency_franc_outlined = 'currency_franc_outlined'; + static const String currency_franc_rounded = 'currency_franc_rounded'; + static const String currency_franc_sharp = 'currency_franc_sharp'; + static const String currency_lira = 'currency_lira'; + static const String currency_lira_outlined = 'currency_lira_outlined'; + static const String currency_lira_rounded = 'currency_lira_rounded'; + static const String currency_lira_sharp = 'currency_lira_sharp'; + static const String currency_pound = 'currency_pound'; + static const String currency_pound_outlined = 'currency_pound_outlined'; + static const String currency_pound_rounded = 'currency_pound_rounded'; + static const String currency_pound_sharp = 'currency_pound_sharp'; + static const String currency_ruble = 'currency_ruble'; + static const String currency_ruble_outlined = 'currency_ruble_outlined'; + static const String currency_ruble_rounded = 'currency_ruble_rounded'; + static const String currency_ruble_sharp = 'currency_ruble_sharp'; + static const String currency_rupee = 'currency_rupee'; + static const String currency_rupee_outlined = 'currency_rupee_outlined'; + static const String currency_rupee_rounded = 'currency_rupee_rounded'; + static const String currency_rupee_sharp = 'currency_rupee_sharp'; + static const String currency_yen = 'currency_yen'; + static const String currency_yen_outlined = 'currency_yen_outlined'; + static const String currency_yen_rounded = 'currency_yen_rounded'; + static const String currency_yen_sharp = 'currency_yen_sharp'; + static const String currency_yuan = 'currency_yuan'; + static const String currency_yuan_outlined = 'currency_yuan_outlined'; + static const String currency_yuan_rounded = 'currency_yuan_rounded'; + static const String currency_yuan_sharp = 'currency_yuan_sharp'; + static const String curtains = 'curtains'; + static const String curtains_closed = 'curtains_closed'; + static const String curtains_closed_outlined = 'curtains_closed_outlined'; + static const String curtains_closed_rounded = 'curtains_closed_rounded'; + static const String curtains_closed_sharp = 'curtains_closed_sharp'; + static const String curtains_outlined = 'curtains_outlined'; + static const String curtains_rounded = 'curtains_rounded'; + static const String curtains_sharp = 'curtains_sharp'; + static const String cut = 'cut'; + static const String cut_outlined = 'cut_outlined'; + static const String cut_rounded = 'cut_rounded'; + static const String cut_sharp = 'cut_sharp'; + static const String cyclone = 'cyclone'; + static const String cyclone_outlined = 'cyclone_outlined'; + static const String cyclone_rounded = 'cyclone_rounded'; + static const String cyclone_sharp = 'cyclone_sharp'; + static const String dangerous = 'dangerous'; + static const String dangerous_outlined = 'dangerous_outlined'; + static const String dangerous_rounded = 'dangerous_rounded'; + static const String dangerous_sharp = 'dangerous_sharp'; + static const String dark_mode = 'dark_mode'; + static const String dark_mode_outlined = 'dark_mode_outlined'; + static const String dark_mode_rounded = 'dark_mode_rounded'; + static const String dark_mode_sharp = 'dark_mode_sharp'; + static const String dashboard = 'dashboard'; + static const String dashboard_customize = 'dashboard_customize'; + static const String dashboard_customize_outlined = + 'dashboard_customize_outlined'; + static const String dashboard_customize_rounded = + 'dashboard_customize_rounded'; + static const String dashboard_customize_sharp = 'dashboard_customize_sharp'; + static const String dashboard_outlined = 'dashboard_outlined'; + static const String dashboard_rounded = 'dashboard_rounded'; + static const String dashboard_sharp = 'dashboard_sharp'; + static const String data_array = 'data_array'; + static const String data_array_outlined = 'data_array_outlined'; + static const String data_array_rounded = 'data_array_rounded'; + static const String data_array_sharp = 'data_array_sharp'; + static const String data_exploration = 'data_exploration'; + static const String data_exploration_outlined = 'data_exploration_outlined'; + static const String data_exploration_rounded = 'data_exploration_rounded'; + static const String data_exploration_sharp = 'data_exploration_sharp'; + static const String data_object = 'data_object'; + static const String data_object_outlined = 'data_object_outlined'; + static const String data_object_rounded = 'data_object_rounded'; + static const String data_object_sharp = 'data_object_sharp'; + static const String data_saver_off = 'data_saver_off'; + static const String data_saver_off_outlined = 'data_saver_off_outlined'; + static const String data_saver_off_rounded = 'data_saver_off_rounded'; + static const String data_saver_off_sharp = 'data_saver_off_sharp'; + static const String data_saver_on = 'data_saver_on'; + static const String data_saver_on_outlined = 'data_saver_on_outlined'; + static const String data_saver_on_rounded = 'data_saver_on_rounded'; + static const String data_saver_on_sharp = 'data_saver_on_sharp'; + static const String data_thresholding = 'data_thresholding'; + static const String data_thresholding_outlined = 'data_thresholding_outlined'; + static const String data_thresholding_rounded = 'data_thresholding_rounded'; + static const String data_thresholding_sharp = 'data_thresholding_sharp'; + static const String data_usage = 'data_usage'; + static const String data_usage_outlined = 'data_usage_outlined'; + static const String data_usage_rounded = 'data_usage_rounded'; + static const String data_usage_sharp = 'data_usage_sharp'; + static const String dataset = 'dataset'; + static const String dataset_linked = 'dataset_linked'; + static const String dataset_linked_outlined = 'dataset_linked_outlined'; + static const String dataset_linked_rounded = 'dataset_linked_rounded'; + static const String dataset_linked_sharp = 'dataset_linked_sharp'; + static const String dataset_outlined = 'dataset_outlined'; + static const String dataset_rounded = 'dataset_rounded'; + static const String dataset_sharp = 'dataset_sharp'; + static const String date_range = 'date_range'; + static const String date_range_outlined = 'date_range_outlined'; + static const String date_range_rounded = 'date_range_rounded'; + static const String date_range_sharp = 'date_range_sharp'; + static const String deblur = 'deblur'; + static const String deblur_outlined = 'deblur_outlined'; + static const String deblur_rounded = 'deblur_rounded'; + static const String deblur_sharp = 'deblur_sharp'; + static const String deck = 'deck'; + static const String deck_outlined = 'deck_outlined'; + static const String deck_rounded = 'deck_rounded'; + static const String deck_sharp = 'deck_sharp'; + static const String dehaze = 'dehaze'; + static const String dehaze_outlined = 'dehaze_outlined'; + static const String dehaze_rounded = 'dehaze_rounded'; + static const String dehaze_sharp = 'dehaze_sharp'; + static const String delete = 'delete'; + static const String delete_forever = 'delete_forever'; + static const String delete_forever_outlined = 'delete_forever_outlined'; + static const String delete_forever_rounded = 'delete_forever_rounded'; + static const String delete_forever_sharp = 'delete_forever_sharp'; + static const String delete_outline = 'delete_outline'; + static const String delete_outline_outlined = 'delete_outline_outlined'; + static const String delete_outline_rounded = 'delete_outline_rounded'; + static const String delete_outline_sharp = 'delete_outline_sharp'; + static const String delete_outlined = 'delete_outlined'; + static const String delete_rounded = 'delete_rounded'; + static const String delete_sharp = 'delete_sharp'; + static const String delete_sweep = 'delete_sweep'; + static const String delete_sweep_outlined = 'delete_sweep_outlined'; + static const String delete_sweep_rounded = 'delete_sweep_rounded'; + static const String delete_sweep_sharp = 'delete_sweep_sharp'; + static const String delivery_dining = 'delivery_dining'; + static const String delivery_dining_outlined = 'delivery_dining_outlined'; + static const String delivery_dining_rounded = 'delivery_dining_rounded'; + static const String delivery_dining_sharp = 'delivery_dining_sharp'; + static const String density_large = 'density_large'; + static const String density_large_outlined = 'density_large_outlined'; + static const String density_large_rounded = 'density_large_rounded'; + static const String density_large_sharp = 'density_large_sharp'; + static const String density_medium = 'density_medium'; + static const String density_medium_outlined = 'density_medium_outlined'; + static const String density_medium_rounded = 'density_medium_rounded'; + static const String density_medium_sharp = 'density_medium_sharp'; + static const String density_small = 'density_small'; + static const String density_small_outlined = 'density_small_outlined'; + static const String density_small_rounded = 'density_small_rounded'; + static const String density_small_sharp = 'density_small_sharp'; + static const String departure_board = 'departure_board'; + static const String departure_board_outlined = 'departure_board_outlined'; + static const String departure_board_rounded = 'departure_board_rounded'; + static const String departure_board_sharp = 'departure_board_sharp'; + static const String description = 'description'; + static const String description_outlined = 'description_outlined'; + static const String description_rounded = 'description_rounded'; + static const String description_sharp = 'description_sharp'; + static const String deselect = 'deselect'; + static const String deselect_outlined = 'deselect_outlined'; + static const String deselect_rounded = 'deselect_rounded'; + static const String deselect_sharp = 'deselect_sharp'; + static const String design_services = 'design_services'; + static const String design_services_outlined = 'design_services_outlined'; + static const String design_services_rounded = 'design_services_rounded'; + static const String design_services_sharp = 'design_services_sharp'; + static const String desk = 'desk'; + static const String desk_outlined = 'desk_outlined'; + static const String desk_rounded = 'desk_rounded'; + static const String desk_sharp = 'desk_sharp'; + static const String desktop_access_disabled = 'desktop_access_disabled'; + static const String desktop_access_disabled_outlined = + 'desktop_access_disabled_outlined'; + static const String desktop_access_disabled_rounded = + 'desktop_access_disabled_rounded'; + static const String desktop_access_disabled_sharp = + 'desktop_access_disabled_sharp'; + static const String desktop_mac = 'desktop_mac'; + static const String desktop_mac_outlined = 'desktop_mac_outlined'; + static const String desktop_mac_rounded = 'desktop_mac_rounded'; + static const String desktop_mac_sharp = 'desktop_mac_sharp'; + static const String desktop_windows = 'desktop_windows'; + static const String desktop_windows_outlined = 'desktop_windows_outlined'; + static const String desktop_windows_rounded = 'desktop_windows_rounded'; + static const String desktop_windows_sharp = 'desktop_windows_sharp'; + static const String details = 'details'; + static const String details_outlined = 'details_outlined'; + static const String details_rounded = 'details_rounded'; + static const String details_sharp = 'details_sharp'; + static const String developer_board = 'developer_board'; + static const String developer_board_off = 'developer_board_off'; + static const String developer_board_off_outlined = + 'developer_board_off_outlined'; + static const String developer_board_off_rounded = + 'developer_board_off_rounded'; + static const String developer_board_off_sharp = 'developer_board_off_sharp'; + static const String developer_board_outlined = 'developer_board_outlined'; + static const String developer_board_rounded = 'developer_board_rounded'; + static const String developer_board_sharp = 'developer_board_sharp'; + static const String developer_mode = 'developer_mode'; + static const String developer_mode_outlined = 'developer_mode_outlined'; + static const String developer_mode_rounded = 'developer_mode_rounded'; + static const String developer_mode_sharp = 'developer_mode_sharp'; + static const String device_hub = 'device_hub'; + static const String device_hub_outlined = 'device_hub_outlined'; + static const String device_hub_rounded = 'device_hub_rounded'; + static const String device_hub_sharp = 'device_hub_sharp'; + static const String device_thermostat = 'device_thermostat'; + static const String device_thermostat_outlined = 'device_thermostat_outlined'; + static const String device_thermostat_rounded = 'device_thermostat_rounded'; + static const String device_thermostat_sharp = 'device_thermostat_sharp'; + static const String device_unknown = 'device_unknown'; + static const String device_unknown_outlined = 'device_unknown_outlined'; + static const String device_unknown_rounded = 'device_unknown_rounded'; + static const String device_unknown_sharp = 'device_unknown_sharp'; + static const String devices = 'devices'; + static const String devices_fold = 'devices_fold'; + static const String devices_fold_outlined = 'devices_fold_outlined'; + static const String devices_fold_rounded = 'devices_fold_rounded'; + static const String devices_fold_sharp = 'devices_fold_sharp'; + static const String devices_other = 'devices_other'; + static const String devices_other_outlined = 'devices_other_outlined'; + static const String devices_other_rounded = 'devices_other_rounded'; + static const String devices_other_sharp = 'devices_other_sharp'; + static const String devices_outlined = 'devices_outlined'; + static const String devices_rounded = 'devices_rounded'; + static const String devices_sharp = 'devices_sharp'; + static const String dialer_sip = 'dialer_sip'; + static const String dialer_sip_outlined = 'dialer_sip_outlined'; + static const String dialer_sip_rounded = 'dialer_sip_rounded'; + static const String dialer_sip_sharp = 'dialer_sip_sharp'; + static const String dialpad = 'dialpad'; + static const String dialpad_outlined = 'dialpad_outlined'; + static const String dialpad_rounded = 'dialpad_rounded'; + static const String dialpad_sharp = 'dialpad_sharp'; + static const String diamond = 'diamond'; + static const String diamond_outlined = 'diamond_outlined'; + static const String diamond_rounded = 'diamond_rounded'; + static const String diamond_sharp = 'diamond_sharp'; + static const String difference = 'difference'; + static const String difference_outlined = 'difference_outlined'; + static const String difference_rounded = 'difference_rounded'; + static const String difference_sharp = 'difference_sharp'; + static const String dining = 'dining'; + static const String dining_outlined = 'dining_outlined'; + static const String dining_rounded = 'dining_rounded'; + static const String dining_sharp = 'dining_sharp'; + static const String dinner_dining = 'dinner_dining'; + static const String dinner_dining_outlined = 'dinner_dining_outlined'; + static const String dinner_dining_rounded = 'dinner_dining_rounded'; + static const String dinner_dining_sharp = 'dinner_dining_sharp'; + static const String directions = 'directions'; + static const String directions_bike = 'directions_bike'; + static const String directions_bike_outlined = 'directions_bike_outlined'; + static const String directions_bike_rounded = 'directions_bike_rounded'; + static const String directions_bike_sharp = 'directions_bike_sharp'; + static const String directions_boat = 'directions_boat'; + static const String directions_boat_filled = 'directions_boat_filled'; + static const String directions_boat_filled_outlined = + 'directions_boat_filled_outlined'; + static const String directions_boat_filled_rounded = + 'directions_boat_filled_rounded'; + static const String directions_boat_filled_sharp = + 'directions_boat_filled_sharp'; + static const String directions_boat_outlined = 'directions_boat_outlined'; + static const String directions_boat_rounded = 'directions_boat_rounded'; + static const String directions_boat_sharp = 'directions_boat_sharp'; + static const String directions_bus = 'directions_bus'; + static const String directions_bus_filled = 'directions_bus_filled'; + static const String directions_bus_filled_outlined = + 'directions_bus_filled_outlined'; + static const String directions_bus_filled_rounded = + 'directions_bus_filled_rounded'; + static const String directions_bus_filled_sharp = + 'directions_bus_filled_sharp'; + static const String directions_bus_outlined = 'directions_bus_outlined'; + static const String directions_bus_rounded = 'directions_bus_rounded'; + static const String directions_bus_sharp = 'directions_bus_sharp'; + static const String directions_car = 'directions_car'; + static const String directions_car_filled = 'directions_car_filled'; + static const String directions_car_filled_outlined = + 'directions_car_filled_outlined'; + static const String directions_car_filled_rounded = + 'directions_car_filled_rounded'; + static const String directions_car_filled_sharp = + 'directions_car_filled_sharp'; + static const String directions_car_outlined = 'directions_car_outlined'; + static const String directions_car_rounded = 'directions_car_rounded'; + static const String directions_car_sharp = 'directions_car_sharp'; + static const String directions_ferry = 'directions_ferry'; + static const String directions_ferry_outlined = 'directions_ferry_outlined'; + static const String directions_ferry_rounded = 'directions_ferry_rounded'; + static const String directions_ferry_sharp = 'directions_ferry_sharp'; + static const String directions_off = 'directions_off'; + static const String directions_off_outlined = 'directions_off_outlined'; + static const String directions_off_rounded = 'directions_off_rounded'; + static const String directions_off_sharp = 'directions_off_sharp'; + static const String directions_outlined = 'directions_outlined'; + static const String directions_railway = 'directions_railway'; + static const String directions_railway_filled = 'directions_railway_filled'; + static const String directions_railway_filled_outlined = + 'directions_railway_filled_outlined'; + static const String directions_railway_filled_rounded = + 'directions_railway_filled_rounded'; + static const String directions_railway_filled_sharp = + 'directions_railway_filled_sharp'; + static const String directions_railway_outlined = + 'directions_railway_outlined'; + static const String directions_railway_rounded = 'directions_railway_rounded'; + static const String directions_railway_sharp = 'directions_railway_sharp'; + static const String directions_rounded = 'directions_rounded'; + static const String directions_run = 'directions_run'; + static const String directions_run_outlined = 'directions_run_outlined'; + static const String directions_run_rounded = 'directions_run_rounded'; + static const String directions_run_sharp = 'directions_run_sharp'; + static const String directions_sharp = 'directions_sharp'; + static const String directions_subway = 'directions_subway'; + static const String directions_subway_filled = 'directions_subway_filled'; + static const String directions_subway_filled_outlined = + 'directions_subway_filled_outlined'; + static const String directions_subway_filled_rounded = + 'directions_subway_filled_rounded'; + static const String directions_subway_filled_sharp = + 'directions_subway_filled_sharp'; + static const String directions_subway_outlined = 'directions_subway_outlined'; + static const String directions_subway_rounded = 'directions_subway_rounded'; + static const String directions_subway_sharp = 'directions_subway_sharp'; + static const String directions_train = 'directions_train'; + static const String directions_train_outlined = 'directions_train_outlined'; + static const String directions_train_rounded = 'directions_train_rounded'; + static const String directions_train_sharp = 'directions_train_sharp'; + static const String directions_transit = 'directions_transit'; + static const String directions_transit_filled = 'directions_transit_filled'; + static const String directions_transit_filled_outlined = + 'directions_transit_filled_outlined'; + static const String directions_transit_filled_rounded = + 'directions_transit_filled_rounded'; + static const String directions_transit_filled_sharp = + 'directions_transit_filled_sharp'; + static const String directions_transit_outlined = + 'directions_transit_outlined'; + static const String directions_transit_rounded = 'directions_transit_rounded'; + static const String directions_transit_sharp = 'directions_transit_sharp'; + static const String directions_walk = 'directions_walk'; + static const String directions_walk_outlined = 'directions_walk_outlined'; + static const String directions_walk_rounded = 'directions_walk_rounded'; + static const String directions_walk_sharp = 'directions_walk_sharp'; + static const String dirty_lens = 'dirty_lens'; + static const String dirty_lens_outlined = 'dirty_lens_outlined'; + static const String dirty_lens_rounded = 'dirty_lens_rounded'; + static const String dirty_lens_sharp = 'dirty_lens_sharp'; + static const String disabled_by_default = 'disabled_by_default'; + static const String disabled_by_default_outlined = + 'disabled_by_default_outlined'; + static const String disabled_by_default_rounded = + 'disabled_by_default_rounded'; + static const String disabled_by_default_sharp = 'disabled_by_default_sharp'; + static const String disabled_visible = 'disabled_visible'; + static const String disabled_visible_outlined = 'disabled_visible_outlined'; + static const String disabled_visible_rounded = 'disabled_visible_rounded'; + static const String disabled_visible_sharp = 'disabled_visible_sharp'; + static const String disc_full = 'disc_full'; + static const String disc_full_outlined = 'disc_full_outlined'; + static const String disc_full_rounded = 'disc_full_rounded'; + static const String disc_full_sharp = 'disc_full_sharp'; + static const String discord = 'discord'; + static const String discord_outlined = 'discord_outlined'; + static const String discord_rounded = 'discord_rounded'; + static const String discord_sharp = 'discord_sharp'; + static const String discount = 'discount'; + static const String discount_outlined = 'discount_outlined'; + static const String discount_rounded = 'discount_rounded'; + static const String discount_sharp = 'discount_sharp'; + static const String display_settings = 'display_settings'; + static const String display_settings_outlined = 'display_settings_outlined'; + static const String display_settings_rounded = 'display_settings_rounded'; + static const String display_settings_sharp = 'display_settings_sharp'; + static const String dnd_forwardslash = 'dnd_forwardslash'; + static const String dnd_forwardslash_outlined = 'dnd_forwardslash_outlined'; + static const String dnd_forwardslash_rounded = 'dnd_forwardslash_rounded'; + static const String dnd_forwardslash_sharp = 'dnd_forwardslash_sharp'; + static const String dns = 'dns'; + static const String dns_outlined = 'dns_outlined'; + static const String dns_rounded = 'dns_rounded'; + static const String dns_sharp = 'dns_sharp'; + static const String do_disturb = 'do_disturb'; + static const String do_disturb_alt = 'do_disturb_alt'; + static const String do_disturb_alt_outlined = 'do_disturb_alt_outlined'; + static const String do_disturb_alt_rounded = 'do_disturb_alt_rounded'; + static const String do_disturb_alt_sharp = 'do_disturb_alt_sharp'; + static const String do_disturb_off = 'do_disturb_off'; + static const String do_disturb_off_outlined = 'do_disturb_off_outlined'; + static const String do_disturb_off_rounded = 'do_disturb_off_rounded'; + static const String do_disturb_off_sharp = 'do_disturb_off_sharp'; + static const String do_disturb_on = 'do_disturb_on'; + static const String do_disturb_on_outlined = 'do_disturb_on_outlined'; + static const String do_disturb_on_rounded = 'do_disturb_on_rounded'; + static const String do_disturb_on_sharp = 'do_disturb_on_sharp'; + static const String do_disturb_outlined = 'do_disturb_outlined'; + static const String do_disturb_rounded = 'do_disturb_rounded'; + static const String do_disturb_sharp = 'do_disturb_sharp'; + static const String do_not_disturb = 'do_not_disturb'; + static const String do_not_disturb_alt = 'do_not_disturb_alt'; + static const String do_not_disturb_alt_outlined = + 'do_not_disturb_alt_outlined'; + static const String do_not_disturb_alt_rounded = 'do_not_disturb_alt_rounded'; + static const String do_not_disturb_alt_sharp = 'do_not_disturb_alt_sharp'; + static const String do_not_disturb_off = 'do_not_disturb_off'; + static const String do_not_disturb_off_outlined = + 'do_not_disturb_off_outlined'; + static const String do_not_disturb_off_rounded = 'do_not_disturb_off_rounded'; + static const String do_not_disturb_off_sharp = 'do_not_disturb_off_sharp'; + static const String do_not_disturb_on = 'do_not_disturb_on'; + static const String do_not_disturb_on_outlined = 'do_not_disturb_on_outlined'; + static const String do_not_disturb_on_rounded = 'do_not_disturb_on_rounded'; + static const String do_not_disturb_on_sharp = 'do_not_disturb_on_sharp'; + static const String do_not_disturb_on_total_silence = + 'do_not_disturb_on_total_silence'; + static const String do_not_disturb_on_total_silence_outlined = + 'do_not_disturb_on_total_silence_outlined'; + static const String do_not_disturb_on_total_silence_rounded = + 'do_not_disturb_on_total_silence_rounded'; + static const String do_not_disturb_on_total_silence_sharp = + 'do_not_disturb_on_total_silence_sharp'; + static const String do_not_disturb_outlined = 'do_not_disturb_outlined'; + static const String do_not_disturb_rounded = 'do_not_disturb_rounded'; + static const String do_not_disturb_sharp = 'do_not_disturb_sharp'; + static const String do_not_step = 'do_not_step'; + static const String do_not_step_outlined = 'do_not_step_outlined'; + static const String do_not_step_rounded = 'do_not_step_rounded'; + static const String do_not_step_sharp = 'do_not_step_sharp'; + static const String do_not_touch = 'do_not_touch'; + static const String do_not_touch_outlined = 'do_not_touch_outlined'; + static const String do_not_touch_rounded = 'do_not_touch_rounded'; + static const String do_not_touch_sharp = 'do_not_touch_sharp'; + static const String dock = 'dock'; + static const String dock_outlined = 'dock_outlined'; + static const String dock_rounded = 'dock_rounded'; + static const String dock_sharp = 'dock_sharp'; + static const String document_scanner = 'document_scanner'; + static const String document_scanner_outlined = 'document_scanner_outlined'; + static const String document_scanner_rounded = 'document_scanner_rounded'; + static const String document_scanner_sharp = 'document_scanner_sharp'; + static const String domain = 'domain'; + static const String domain_add = 'domain_add'; + static const String domain_add_outlined = 'domain_add_outlined'; + static const String domain_add_rounded = 'domain_add_rounded'; + static const String domain_add_sharp = 'domain_add_sharp'; + static const String domain_disabled = 'domain_disabled'; + static const String domain_disabled_outlined = 'domain_disabled_outlined'; + static const String domain_disabled_rounded = 'domain_disabled_rounded'; + static const String domain_disabled_sharp = 'domain_disabled_sharp'; + static const String domain_outlined = 'domain_outlined'; + static const String domain_rounded = 'domain_rounded'; + static const String domain_sharp = 'domain_sharp'; + static const String domain_verification = 'domain_verification'; + static const String domain_verification_outlined = + 'domain_verification_outlined'; + static const String domain_verification_rounded = + 'domain_verification_rounded'; + static const String domain_verification_sharp = 'domain_verification_sharp'; + static const String done = 'done'; + static const String done_all = 'done_all'; + static const String done_all_outlined = 'done_all_outlined'; + static const String done_all_rounded = 'done_all_rounded'; + static const String done_all_sharp = 'done_all_sharp'; + static const String done_outline = 'done_outline'; + static const String done_outline_outlined = 'done_outline_outlined'; + static const String done_outline_rounded = 'done_outline_rounded'; + static const String done_outline_sharp = 'done_outline_sharp'; + static const String done_outlined = 'done_outlined'; + static const String done_rounded = 'done_rounded'; + static const String done_sharp = 'done_sharp'; + static const String donut_large = 'donut_large'; + static const String donut_large_outlined = 'donut_large_outlined'; + static const String donut_large_rounded = 'donut_large_rounded'; + static const String donut_large_sharp = 'donut_large_sharp'; + static const String donut_small = 'donut_small'; + static const String donut_small_outlined = 'donut_small_outlined'; + static const String donut_small_rounded = 'donut_small_rounded'; + static const String donut_small_sharp = 'donut_small_sharp'; + static const String door_back_door = 'door_back_door'; + static const String door_back_door_outlined = 'door_back_door_outlined'; + static const String door_back_door_rounded = 'door_back_door_rounded'; + static const String door_back_door_sharp = 'door_back_door_sharp'; + static const String door_front_door = 'door_front_door'; + static const String door_front_door_outlined = 'door_front_door_outlined'; + static const String door_front_door_rounded = 'door_front_door_rounded'; + static const String door_front_door_sharp = 'door_front_door_sharp'; + static const String door_sliding = 'door_sliding'; + static const String door_sliding_outlined = 'door_sliding_outlined'; + static const String door_sliding_rounded = 'door_sliding_rounded'; + static const String door_sliding_sharp = 'door_sliding_sharp'; + static const String doorbell = 'doorbell'; + static const String doorbell_outlined = 'doorbell_outlined'; + static const String doorbell_rounded = 'doorbell_rounded'; + static const String doorbell_sharp = 'doorbell_sharp'; + static const String double_arrow = 'double_arrow'; + static const String double_arrow_outlined = 'double_arrow_outlined'; + static const String double_arrow_rounded = 'double_arrow_rounded'; + static const String double_arrow_sharp = 'double_arrow_sharp'; + static const String downhill_skiing = 'downhill_skiing'; + static const String downhill_skiing_outlined = 'downhill_skiing_outlined'; + static const String downhill_skiing_rounded = 'downhill_skiing_rounded'; + static const String downhill_skiing_sharp = 'downhill_skiing_sharp'; + static const String download = 'download'; + static const String download_done = 'download_done'; + static const String download_done_outlined = 'download_done_outlined'; + static const String download_done_rounded = 'download_done_rounded'; + static const String download_done_sharp = 'download_done_sharp'; + static const String download_for_offline = 'download_for_offline'; + static const String download_for_offline_outlined = + 'download_for_offline_outlined'; + static const String download_for_offline_rounded = + 'download_for_offline_rounded'; + static const String download_for_offline_sharp = 'download_for_offline_sharp'; + static const String download_outlined = 'download_outlined'; + static const String download_rounded = 'download_rounded'; + static const String download_sharp = 'download_sharp'; + static const String downloading = 'downloading'; + static const String downloading_outlined = 'downloading_outlined'; + static const String downloading_rounded = 'downloading_rounded'; + static const String downloading_sharp = 'downloading_sharp'; + static const String drafts = 'drafts'; + static const String drafts_outlined = 'drafts_outlined'; + static const String drafts_rounded = 'drafts_rounded'; + static const String drafts_sharp = 'drafts_sharp'; + static const String drag_handle = 'drag_handle'; + static const String drag_handle_outlined = 'drag_handle_outlined'; + static const String drag_handle_rounded = 'drag_handle_rounded'; + static const String drag_handle_sharp = 'drag_handle_sharp'; + static const String drag_indicator = 'drag_indicator'; + static const String drag_indicator_outlined = 'drag_indicator_outlined'; + static const String drag_indicator_rounded = 'drag_indicator_rounded'; + static const String drag_indicator_sharp = 'drag_indicator_sharp'; + static const String draw = 'draw'; + static const String draw_outlined = 'draw_outlined'; + static const String draw_rounded = 'draw_rounded'; + static const String draw_sharp = 'draw_sharp'; + static const String drive_eta = 'drive_eta'; + static const String drive_eta_outlined = 'drive_eta_outlined'; + static const String drive_eta_rounded = 'drive_eta_rounded'; + static const String drive_eta_sharp = 'drive_eta_sharp'; + static const String drive_file_move = 'drive_file_move'; + static const String drive_file_move_outline = 'drive_file_move_outline'; + static const String drive_file_move_outlined = 'drive_file_move_outlined'; + static const String drive_file_move_rounded = 'drive_file_move_rounded'; + static const String drive_file_move_rtl = 'drive_file_move_rtl'; + static const String drive_file_move_rtl_outlined = + 'drive_file_move_rtl_outlined'; + static const String drive_file_move_rtl_rounded = + 'drive_file_move_rtl_rounded'; + static const String drive_file_move_rtl_sharp = 'drive_file_move_rtl_sharp'; + static const String drive_file_move_sharp = 'drive_file_move_sharp'; + static const String drive_file_rename_outline = 'drive_file_rename_outline'; + static const String drive_file_rename_outline_outlined = + 'drive_file_rename_outline_outlined'; + static const String drive_file_rename_outline_rounded = + 'drive_file_rename_outline_rounded'; + static const String drive_file_rename_outline_sharp = + 'drive_file_rename_outline_sharp'; + static const String drive_folder_upload = 'drive_folder_upload'; + static const String drive_folder_upload_outlined = + 'drive_folder_upload_outlined'; + static const String drive_folder_upload_rounded = + 'drive_folder_upload_rounded'; + static const String drive_folder_upload_sharp = 'drive_folder_upload_sharp'; + static const String dry = 'dry'; + static const String dry_cleaning = 'dry_cleaning'; + static const String dry_cleaning_outlined = 'dry_cleaning_outlined'; + static const String dry_cleaning_rounded = 'dry_cleaning_rounded'; + static const String dry_cleaning_sharp = 'dry_cleaning_sharp'; + static const String dry_outlined = 'dry_outlined'; + static const String dry_rounded = 'dry_rounded'; + static const String dry_sharp = 'dry_sharp'; + static const String duo = 'duo'; + static const String duo_outlined = 'duo_outlined'; + static const String duo_rounded = 'duo_rounded'; + static const String duo_sharp = 'duo_sharp'; + static const String dvr = 'dvr'; + static const String dvr_outlined = 'dvr_outlined'; + static const String dvr_rounded = 'dvr_rounded'; + static const String dvr_sharp = 'dvr_sharp'; + static const String dynamic_feed = 'dynamic_feed'; + static const String dynamic_feed_outlined = 'dynamic_feed_outlined'; + static const String dynamic_feed_rounded = 'dynamic_feed_rounded'; + static const String dynamic_feed_sharp = 'dynamic_feed_sharp'; + static const String dynamic_form = 'dynamic_form'; + static const String dynamic_form_outlined = 'dynamic_form_outlined'; + static const String dynamic_form_rounded = 'dynamic_form_rounded'; + static const String dynamic_form_sharp = 'dynamic_form_sharp'; + static const String e_mobiledata = 'e_mobiledata'; + static const String e_mobiledata_outlined = 'e_mobiledata_outlined'; + static const String e_mobiledata_rounded = 'e_mobiledata_rounded'; + static const String e_mobiledata_sharp = 'e_mobiledata_sharp'; + static const String earbuds = 'earbuds'; + static const String earbuds_battery = 'earbuds_battery'; + static const String earbuds_battery_outlined = 'earbuds_battery_outlined'; + static const String earbuds_battery_rounded = 'earbuds_battery_rounded'; + static const String earbuds_battery_sharp = 'earbuds_battery_sharp'; + static const String earbuds_outlined = 'earbuds_outlined'; + static const String earbuds_rounded = 'earbuds_rounded'; + static const String earbuds_sharp = 'earbuds_sharp'; + static const String east = 'east'; + static const String east_outlined = 'east_outlined'; + static const String east_rounded = 'east_rounded'; + static const String east_sharp = 'east_sharp'; + static const String eco = 'eco'; + static const String eco_outlined = 'eco_outlined'; + static const String eco_rounded = 'eco_rounded'; + static const String eco_sharp = 'eco_sharp'; + static const String edgesensor_high = 'edgesensor_high'; + static const String edgesensor_high_outlined = 'edgesensor_high_outlined'; + static const String edgesensor_high_rounded = 'edgesensor_high_rounded'; + static const String edgesensor_high_sharp = 'edgesensor_high_sharp'; + static const String edgesensor_low = 'edgesensor_low'; + static const String edgesensor_low_outlined = 'edgesensor_low_outlined'; + static const String edgesensor_low_rounded = 'edgesensor_low_rounded'; + static const String edgesensor_low_sharp = 'edgesensor_low_sharp'; + static const String edit = 'edit'; + static const String edit_attributes = 'edit_attributes'; + static const String edit_attributes_outlined = 'edit_attributes_outlined'; + static const String edit_attributes_rounded = 'edit_attributes_rounded'; + static const String edit_attributes_sharp = 'edit_attributes_sharp'; + static const String edit_calendar = 'edit_calendar'; + static const String edit_calendar_outlined = 'edit_calendar_outlined'; + static const String edit_calendar_rounded = 'edit_calendar_rounded'; + static const String edit_calendar_sharp = 'edit_calendar_sharp'; + static const String edit_location = 'edit_location'; + static const String edit_location_alt = 'edit_location_alt'; + static const String edit_location_alt_outlined = 'edit_location_alt_outlined'; + static const String edit_location_alt_rounded = 'edit_location_alt_rounded'; + static const String edit_location_alt_sharp = 'edit_location_alt_sharp'; + static const String edit_location_outlined = 'edit_location_outlined'; + static const String edit_location_rounded = 'edit_location_rounded'; + static const String edit_location_sharp = 'edit_location_sharp'; + static const String edit_note = 'edit_note'; + static const String edit_note_outlined = 'edit_note_outlined'; + static const String edit_note_rounded = 'edit_note_rounded'; + static const String edit_note_sharp = 'edit_note_sharp'; + static const String edit_notifications = 'edit_notifications'; + static const String edit_notifications_outlined = + 'edit_notifications_outlined'; + static const String edit_notifications_rounded = 'edit_notifications_rounded'; + static const String edit_notifications_sharp = 'edit_notifications_sharp'; + static const String edit_off = 'edit_off'; + static const String edit_off_outlined = 'edit_off_outlined'; + static const String edit_off_rounded = 'edit_off_rounded'; + static const String edit_off_sharp = 'edit_off_sharp'; + static const String edit_outlined = 'edit_outlined'; + static const String edit_road = 'edit_road'; + static const String edit_road_outlined = 'edit_road_outlined'; + static const String edit_road_rounded = 'edit_road_rounded'; + static const String edit_road_sharp = 'edit_road_sharp'; + static const String edit_rounded = 'edit_rounded'; + static const String edit_sharp = 'edit_sharp'; + static const String egg = 'egg'; + static const String egg_alt = 'egg_alt'; + static const String egg_alt_outlined = 'egg_alt_outlined'; + static const String egg_alt_rounded = 'egg_alt_rounded'; + static const String egg_alt_sharp = 'egg_alt_sharp'; + static const String egg_outlined = 'egg_outlined'; + static const String egg_rounded = 'egg_rounded'; + static const String egg_sharp = 'egg_sharp'; + static const String eight_k = 'eight_k'; + static const String eight_k_outlined = 'eight_k_outlined'; + static const String eight_k_plus = 'eight_k_plus'; + static const String eight_k_plus_outlined = 'eight_k_plus_outlined'; + static const String eight_k_plus_rounded = 'eight_k_plus_rounded'; + static const String eight_k_plus_sharp = 'eight_k_plus_sharp'; + static const String eight_k_rounded = 'eight_k_rounded'; + static const String eight_k_sharp = 'eight_k_sharp'; + static const String eight_mp = 'eight_mp'; + static const String eight_mp_outlined = 'eight_mp_outlined'; + static const String eight_mp_rounded = 'eight_mp_rounded'; + static const String eight_mp_sharp = 'eight_mp_sharp'; + static const String eighteen_mp = 'eighteen_mp'; + static const String eighteen_mp_outlined = 'eighteen_mp_outlined'; + static const String eighteen_mp_rounded = 'eighteen_mp_rounded'; + static const String eighteen_mp_sharp = 'eighteen_mp_sharp'; + static const String eighteen_up_rating = 'eighteen_up_rating'; + static const String eighteen_up_rating_outlined = + 'eighteen_up_rating_outlined'; + static const String eighteen_up_rating_rounded = 'eighteen_up_rating_rounded'; + static const String eighteen_up_rating_sharp = 'eighteen_up_rating_sharp'; + static const String eject = 'eject'; + static const String eject_outlined = 'eject_outlined'; + static const String eject_rounded = 'eject_rounded'; + static const String eject_sharp = 'eject_sharp'; + static const String elderly = 'elderly'; + static const String elderly_outlined = 'elderly_outlined'; + static const String elderly_rounded = 'elderly_rounded'; + static const String elderly_sharp = 'elderly_sharp'; + static const String elderly_woman = 'elderly_woman'; + static const String elderly_woman_outlined = 'elderly_woman_outlined'; + static const String elderly_woman_rounded = 'elderly_woman_rounded'; + static const String elderly_woman_sharp = 'elderly_woman_sharp'; + static const String electric_bike = 'electric_bike'; + static const String electric_bike_outlined = 'electric_bike_outlined'; + static const String electric_bike_rounded = 'electric_bike_rounded'; + static const String electric_bike_sharp = 'electric_bike_sharp'; + static const String electric_bolt = 'electric_bolt'; + static const String electric_bolt_outlined = 'electric_bolt_outlined'; + static const String electric_bolt_rounded = 'electric_bolt_rounded'; + static const String electric_bolt_sharp = 'electric_bolt_sharp'; + static const String electric_car = 'electric_car'; + static const String electric_car_outlined = 'electric_car_outlined'; + static const String electric_car_rounded = 'electric_car_rounded'; + static const String electric_car_sharp = 'electric_car_sharp'; + static const String electric_meter = 'electric_meter'; + static const String electric_meter_outlined = 'electric_meter_outlined'; + static const String electric_meter_rounded = 'electric_meter_rounded'; + static const String electric_meter_sharp = 'electric_meter_sharp'; + static const String electric_moped = 'electric_moped'; + static const String electric_moped_outlined = 'electric_moped_outlined'; + static const String electric_moped_rounded = 'electric_moped_rounded'; + static const String electric_moped_sharp = 'electric_moped_sharp'; + static const String electric_rickshaw = 'electric_rickshaw'; + static const String electric_rickshaw_outlined = 'electric_rickshaw_outlined'; + static const String electric_rickshaw_rounded = 'electric_rickshaw_rounded'; + static const String electric_rickshaw_sharp = 'electric_rickshaw_sharp'; + static const String electric_scooter = 'electric_scooter'; + static const String electric_scooter_outlined = 'electric_scooter_outlined'; + static const String electric_scooter_rounded = 'electric_scooter_rounded'; + static const String electric_scooter_sharp = 'electric_scooter_sharp'; + static const String electrical_services = 'electrical_services'; + static const String electrical_services_outlined = + 'electrical_services_outlined'; + static const String electrical_services_rounded = + 'electrical_services_rounded'; + static const String electrical_services_sharp = 'electrical_services_sharp'; + static const String elevator = 'elevator'; + static const String elevator_outlined = 'elevator_outlined'; + static const String elevator_rounded = 'elevator_rounded'; + static const String elevator_sharp = 'elevator_sharp'; + static const String eleven_mp = 'eleven_mp'; + static const String eleven_mp_outlined = 'eleven_mp_outlined'; + static const String eleven_mp_rounded = 'eleven_mp_rounded'; + static const String eleven_mp_sharp = 'eleven_mp_sharp'; + static const String email = 'email'; + static const String email_outlined = 'email_outlined'; + static const String email_rounded = 'email_rounded'; + static const String email_sharp = 'email_sharp'; + static const String emergency = 'emergency'; + static const String emergency_outlined = 'emergency_outlined'; + static const String emergency_recording = 'emergency_recording'; + static const String emergency_recording_outlined = + 'emergency_recording_outlined'; + static const String emergency_recording_rounded = + 'emergency_recording_rounded'; + static const String emergency_recording_sharp = 'emergency_recording_sharp'; + static const String emergency_rounded = 'emergency_rounded'; + static const String emergency_share = 'emergency_share'; + static const String emergency_share_outlined = 'emergency_share_outlined'; + static const String emergency_share_rounded = 'emergency_share_rounded'; + static const String emergency_share_sharp = 'emergency_share_sharp'; + static const String emergency_sharp = 'emergency_sharp'; + static const String emoji_emotions = 'emoji_emotions'; + static const String emoji_emotions_outlined = 'emoji_emotions_outlined'; + static const String emoji_emotions_rounded = 'emoji_emotions_rounded'; + static const String emoji_emotions_sharp = 'emoji_emotions_sharp'; + static const String emoji_events = 'emoji_events'; + static const String emoji_events_outlined = 'emoji_events_outlined'; + static const String emoji_events_rounded = 'emoji_events_rounded'; + static const String emoji_events_sharp = 'emoji_events_sharp'; + static const String emoji_flags = 'emoji_flags'; + static const String emoji_flags_outlined = 'emoji_flags_outlined'; + static const String emoji_flags_rounded = 'emoji_flags_rounded'; + static const String emoji_flags_sharp = 'emoji_flags_sharp'; + static const String emoji_food_beverage = 'emoji_food_beverage'; + static const String emoji_food_beverage_outlined = + 'emoji_food_beverage_outlined'; + static const String emoji_food_beverage_rounded = + 'emoji_food_beverage_rounded'; + static const String emoji_food_beverage_sharp = 'emoji_food_beverage_sharp'; + static const String emoji_nature = 'emoji_nature'; + static const String emoji_nature_outlined = 'emoji_nature_outlined'; + static const String emoji_nature_rounded = 'emoji_nature_rounded'; + static const String emoji_nature_sharp = 'emoji_nature_sharp'; + static const String emoji_objects = 'emoji_objects'; + static const String emoji_objects_outlined = 'emoji_objects_outlined'; + static const String emoji_objects_rounded = 'emoji_objects_rounded'; + static const String emoji_objects_sharp = 'emoji_objects_sharp'; + static const String emoji_people = 'emoji_people'; + static const String emoji_people_outlined = 'emoji_people_outlined'; + static const String emoji_people_rounded = 'emoji_people_rounded'; + static const String emoji_people_sharp = 'emoji_people_sharp'; + static const String emoji_symbols = 'emoji_symbols'; + static const String emoji_symbols_outlined = 'emoji_symbols_outlined'; + static const String emoji_symbols_rounded = 'emoji_symbols_rounded'; + static const String emoji_symbols_sharp = 'emoji_symbols_sharp'; + static const String emoji_transportation = 'emoji_transportation'; + static const String emoji_transportation_outlined = + 'emoji_transportation_outlined'; + static const String emoji_transportation_rounded = + 'emoji_transportation_rounded'; + static const String emoji_transportation_sharp = 'emoji_transportation_sharp'; + static const String energy_savings_leaf = 'energy_savings_leaf'; + static const String energy_savings_leaf_outlined = + 'energy_savings_leaf_outlined'; + static const String energy_savings_leaf_rounded = + 'energy_savings_leaf_rounded'; + static const String energy_savings_leaf_sharp = 'energy_savings_leaf_sharp'; + static const String engineering = 'engineering'; + static const String engineering_outlined = 'engineering_outlined'; + static const String engineering_rounded = 'engineering_rounded'; + static const String engineering_sharp = 'engineering_sharp'; + static const String enhance_photo_translate = 'enhance_photo_translate'; + static const String enhance_photo_translate_outlined = + 'enhance_photo_translate_outlined'; + static const String enhance_photo_translate_rounded = + 'enhance_photo_translate_rounded'; + static const String enhance_photo_translate_sharp = + 'enhance_photo_translate_sharp'; + static const String enhanced_encryption = 'enhanced_encryption'; + static const String enhanced_encryption_outlined = + 'enhanced_encryption_outlined'; + static const String enhanced_encryption_rounded = + 'enhanced_encryption_rounded'; + static const String enhanced_encryption_sharp = 'enhanced_encryption_sharp'; + static const String equalizer = 'equalizer'; + static const String equalizer_outlined = 'equalizer_outlined'; + static const String equalizer_rounded = 'equalizer_rounded'; + static const String equalizer_sharp = 'equalizer_sharp'; + static const String error = 'error'; + static const String error_outline = 'error_outline'; + static const String error_outline_outlined = 'error_outline_outlined'; + static const String error_outline_rounded = 'error_outline_rounded'; + static const String error_outline_sharp = 'error_outline_sharp'; + static const String error_outlined = 'error_outlined'; + static const String error_rounded = 'error_rounded'; + static const String error_sharp = 'error_sharp'; + static const String escalator = 'escalator'; + static const String escalator_outlined = 'escalator_outlined'; + static const String escalator_rounded = 'escalator_rounded'; + static const String escalator_sharp = 'escalator_sharp'; + static const String escalator_warning = 'escalator_warning'; + static const String escalator_warning_outlined = 'escalator_warning_outlined'; + static const String escalator_warning_rounded = 'escalator_warning_rounded'; + static const String escalator_warning_sharp = 'escalator_warning_sharp'; + static const String euro = 'euro'; + static const String euro_outlined = 'euro_outlined'; + static const String euro_rounded = 'euro_rounded'; + static const String euro_sharp = 'euro_sharp'; + static const String euro_symbol = 'euro_symbol'; + static const String euro_symbol_outlined = 'euro_symbol_outlined'; + static const String euro_symbol_rounded = 'euro_symbol_rounded'; + static const String euro_symbol_sharp = 'euro_symbol_sharp'; + static const String ev_station = 'ev_station'; + static const String ev_station_outlined = 'ev_station_outlined'; + static const String ev_station_rounded = 'ev_station_rounded'; + static const String ev_station_sharp = 'ev_station_sharp'; + static const String event = 'event'; + static const String event_available = 'event_available'; + static const String event_available_outlined = 'event_available_outlined'; + static const String event_available_rounded = 'event_available_rounded'; + static const String event_available_sharp = 'event_available_sharp'; + static const String event_busy = 'event_busy'; + static const String event_busy_outlined = 'event_busy_outlined'; + static const String event_busy_rounded = 'event_busy_rounded'; + static const String event_busy_sharp = 'event_busy_sharp'; + static const String event_note = 'event_note'; + static const String event_note_outlined = 'event_note_outlined'; + static const String event_note_rounded = 'event_note_rounded'; + static const String event_note_sharp = 'event_note_sharp'; + static const String event_outlined = 'event_outlined'; + static const String event_repeat = 'event_repeat'; + static const String event_repeat_outlined = 'event_repeat_outlined'; + static const String event_repeat_rounded = 'event_repeat_rounded'; + static const String event_repeat_sharp = 'event_repeat_sharp'; + static const String event_rounded = 'event_rounded'; + static const String event_seat = 'event_seat'; + static const String event_seat_outlined = 'event_seat_outlined'; + static const String event_seat_rounded = 'event_seat_rounded'; + static const String event_seat_sharp = 'event_seat_sharp'; + static const String event_sharp = 'event_sharp'; + static const String exit_to_app = 'exit_to_app'; + static const String exit_to_app_outlined = 'exit_to_app_outlined'; + static const String exit_to_app_rounded = 'exit_to_app_rounded'; + static const String exit_to_app_sharp = 'exit_to_app_sharp'; + static const String expand = 'expand'; + static const String expand_circle_down = 'expand_circle_down'; + static const String expand_circle_down_outlined = + 'expand_circle_down_outlined'; + static const String expand_circle_down_rounded = 'expand_circle_down_rounded'; + static const String expand_circle_down_sharp = 'expand_circle_down_sharp'; + static const String expand_less = 'expand_less'; + static const String expand_less_outlined = 'expand_less_outlined'; + static const String expand_less_rounded = 'expand_less_rounded'; + static const String expand_less_sharp = 'expand_less_sharp'; + static const String expand_more = 'expand_more'; + static const String expand_more_outlined = 'expand_more_outlined'; + static const String expand_more_rounded = 'expand_more_rounded'; + static const String expand_more_sharp = 'expand_more_sharp'; + static const String expand_outlined = 'expand_outlined'; + static const String expand_rounded = 'expand_rounded'; + static const String expand_sharp = 'expand_sharp'; + static const String explicit = 'explicit'; + static const String explicit_outlined = 'explicit_outlined'; + static const String explicit_rounded = 'explicit_rounded'; + static const String explicit_sharp = 'explicit_sharp'; + static const String explore = 'explore'; + static const String explore_off = 'explore_off'; + static const String explore_off_outlined = 'explore_off_outlined'; + static const String explore_off_rounded = 'explore_off_rounded'; + static const String explore_off_sharp = 'explore_off_sharp'; + static const String explore_outlined = 'explore_outlined'; + static const String explore_rounded = 'explore_rounded'; + static const String explore_sharp = 'explore_sharp'; + static const String exposure = 'exposure'; + static const String exposure_minus_1 = 'exposure_minus_1'; + static const String exposure_minus_1_outlined = 'exposure_minus_1_outlined'; + static const String exposure_minus_1_rounded = 'exposure_minus_1_rounded'; + static const String exposure_minus_1_sharp = 'exposure_minus_1_sharp'; + static const String exposure_minus_2 = 'exposure_minus_2'; + static const String exposure_minus_2_outlined = 'exposure_minus_2_outlined'; + static const String exposure_minus_2_rounded = 'exposure_minus_2_rounded'; + static const String exposure_minus_2_sharp = 'exposure_minus_2_sharp'; + static const String exposure_neg_1 = 'exposure_neg_1'; + static const String exposure_neg_1_outlined = 'exposure_neg_1_outlined'; + static const String exposure_neg_1_rounded = 'exposure_neg_1_rounded'; + static const String exposure_neg_1_sharp = 'exposure_neg_1_sharp'; + static const String exposure_neg_2 = 'exposure_neg_2'; + static const String exposure_neg_2_outlined = 'exposure_neg_2_outlined'; + static const String exposure_neg_2_rounded = 'exposure_neg_2_rounded'; + static const String exposure_neg_2_sharp = 'exposure_neg_2_sharp'; + static const String exposure_outlined = 'exposure_outlined'; + static const String exposure_plus_1 = 'exposure_plus_1'; + static const String exposure_plus_1_outlined = 'exposure_plus_1_outlined'; + static const String exposure_plus_1_rounded = 'exposure_plus_1_rounded'; + static const String exposure_plus_1_sharp = 'exposure_plus_1_sharp'; + static const String exposure_plus_2 = 'exposure_plus_2'; + static const String exposure_plus_2_outlined = 'exposure_plus_2_outlined'; + static const String exposure_plus_2_rounded = 'exposure_plus_2_rounded'; + static const String exposure_plus_2_sharp = 'exposure_plus_2_sharp'; + static const String exposure_rounded = 'exposure_rounded'; + static const String exposure_sharp = 'exposure_sharp'; + static const String exposure_zero = 'exposure_zero'; + static const String exposure_zero_outlined = 'exposure_zero_outlined'; + static const String exposure_zero_rounded = 'exposure_zero_rounded'; + static const String exposure_zero_sharp = 'exposure_zero_sharp'; + static const String extension = 'extension'; + static const String extension_off = 'extension_off'; + static const String extension_off_outlined = 'extension_off_outlined'; + static const String extension_off_rounded = 'extension_off_rounded'; + static const String extension_off_sharp = 'extension_off_sharp'; + static const String extension_outlined = 'extension_outlined'; + static const String extension_rounded = 'extension_rounded'; + static const String extension_sharp = 'extension_sharp'; + static const String face = 'face'; + static const String face_outlined = 'face_outlined'; + static const String face_retouching_natural = 'face_retouching_natural'; + static const String face_retouching_natural_outlined = + 'face_retouching_natural_outlined'; + static const String face_retouching_natural_rounded = + 'face_retouching_natural_rounded'; + static const String face_retouching_natural_sharp = + 'face_retouching_natural_sharp'; + static const String face_retouching_off = 'face_retouching_off'; + static const String face_retouching_off_outlined = + 'face_retouching_off_outlined'; + static const String face_retouching_off_rounded = + 'face_retouching_off_rounded'; + static const String face_retouching_off_sharp = 'face_retouching_off_sharp'; + static const String face_rounded = 'face_rounded'; + static const String face_sharp = 'face_sharp'; + static const String face_unlock_outlined = 'face_unlock_outlined'; + static const String face_unlock_rounded = 'face_unlock_rounded'; + static const String face_unlock_sharp = 'face_unlock_sharp'; + static const String facebook = 'facebook'; + static const String facebook_outlined = 'facebook_outlined'; + static const String facebook_rounded = 'facebook_rounded'; + static const String facebook_sharp = 'facebook_sharp'; + static const String fact_check = 'fact_check'; + static const String fact_check_outlined = 'fact_check_outlined'; + static const String fact_check_rounded = 'fact_check_rounded'; + static const String fact_check_sharp = 'fact_check_sharp'; + static const String factory = 'factory'; + static const String factory_outlined = 'factory_outlined'; + static const String factory_rounded = 'factory_rounded'; + static const String factory_sharp = 'factory_sharp'; + static const String family_restroom = 'family_restroom'; + static const String family_restroom_outlined = 'family_restroom_outlined'; + static const String family_restroom_rounded = 'family_restroom_rounded'; + static const String family_restroom_sharp = 'family_restroom_sharp'; + static const String fast_forward = 'fast_forward'; + static const String fast_forward_outlined = 'fast_forward_outlined'; + static const String fast_forward_rounded = 'fast_forward_rounded'; + static const String fast_forward_sharp = 'fast_forward_sharp'; + static const String fast_rewind = 'fast_rewind'; + static const String fast_rewind_outlined = 'fast_rewind_outlined'; + static const String fast_rewind_rounded = 'fast_rewind_rounded'; + static const String fast_rewind_sharp = 'fast_rewind_sharp'; + static const String fastfood = 'fastfood'; + static const String fastfood_outlined = 'fastfood_outlined'; + static const String fastfood_rounded = 'fastfood_rounded'; + static const String fastfood_sharp = 'fastfood_sharp'; + static const String favorite = 'favorite'; + static const String favorite_border = 'favorite_border'; + static const String favorite_border_outlined = 'favorite_border_outlined'; + static const String favorite_border_rounded = 'favorite_border_rounded'; + static const String favorite_border_sharp = 'favorite_border_sharp'; + static const String favorite_outline = 'favorite_outline'; + static const String favorite_outline_outlined = 'favorite_outline_outlined'; + static const String favorite_outline_rounded = 'favorite_outline_rounded'; + static const String favorite_outline_sharp = 'favorite_outline_sharp'; + static const String favorite_outlined = 'favorite_outlined'; + static const String favorite_rounded = 'favorite_rounded'; + static const String favorite_sharp = 'favorite_sharp'; + static const String fax = 'fax'; + static const String fax_outlined = 'fax_outlined'; + static const String fax_rounded = 'fax_rounded'; + static const String fax_sharp = 'fax_sharp'; + static const String featured_play_list = 'featured_play_list'; + static const String featured_play_list_outlined = + 'featured_play_list_outlined'; + static const String featured_play_list_rounded = 'featured_play_list_rounded'; + static const String featured_play_list_sharp = 'featured_play_list_sharp'; + static const String featured_video = 'featured_video'; + static const String featured_video_outlined = 'featured_video_outlined'; + static const String featured_video_rounded = 'featured_video_rounded'; + static const String featured_video_sharp = 'featured_video_sharp'; + static const String feed = 'feed'; + static const String feed_outlined = 'feed_outlined'; + static const String feed_rounded = 'feed_rounded'; + static const String feed_sharp = 'feed_sharp'; + static const String feedback = 'feedback'; + static const String feedback_outlined = 'feedback_outlined'; + static const String feedback_rounded = 'feedback_rounded'; + static const String feedback_sharp = 'feedback_sharp'; + static const String female = 'female'; + static const String female_outlined = 'female_outlined'; + static const String female_rounded = 'female_rounded'; + static const String female_sharp = 'female_sharp'; + static const String fence = 'fence'; + static const String fence_outlined = 'fence_outlined'; + static const String fence_rounded = 'fence_rounded'; + static const String fence_sharp = 'fence_sharp'; + static const String festival = 'festival'; + static const String festival_outlined = 'festival_outlined'; + static const String festival_rounded = 'festival_rounded'; + static const String festival_sharp = 'festival_sharp'; + static const String fiber_dvr = 'fiber_dvr'; + static const String fiber_dvr_outlined = 'fiber_dvr_outlined'; + static const String fiber_dvr_rounded = 'fiber_dvr_rounded'; + static const String fiber_dvr_sharp = 'fiber_dvr_sharp'; + static const String fiber_manual_record = 'fiber_manual_record'; + static const String fiber_manual_record_outlined = + 'fiber_manual_record_outlined'; + static const String fiber_manual_record_rounded = + 'fiber_manual_record_rounded'; + static const String fiber_manual_record_sharp = 'fiber_manual_record_sharp'; + static const String fiber_new = 'fiber_new'; + static const String fiber_new_outlined = 'fiber_new_outlined'; + static const String fiber_new_rounded = 'fiber_new_rounded'; + static const String fiber_new_sharp = 'fiber_new_sharp'; + static const String fiber_pin = 'fiber_pin'; + static const String fiber_pin_outlined = 'fiber_pin_outlined'; + static const String fiber_pin_rounded = 'fiber_pin_rounded'; + static const String fiber_pin_sharp = 'fiber_pin_sharp'; + static const String fiber_smart_record = 'fiber_smart_record'; + static const String fiber_smart_record_outlined = + 'fiber_smart_record_outlined'; + static const String fiber_smart_record_rounded = 'fiber_smart_record_rounded'; + static const String fiber_smart_record_sharp = 'fiber_smart_record_sharp'; + static const String fifteen_mp = 'fifteen_mp'; + static const String fifteen_mp_outlined = 'fifteen_mp_outlined'; + static const String fifteen_mp_rounded = 'fifteen_mp_rounded'; + static const String fifteen_mp_sharp = 'fifteen_mp_sharp'; + static const String file_copy = 'file_copy'; + static const String file_copy_outlined = 'file_copy_outlined'; + static const String file_copy_rounded = 'file_copy_rounded'; + static const String file_copy_sharp = 'file_copy_sharp'; + static const String file_download = 'file_download'; + static const String file_download_done = 'file_download_done'; + static const String file_download_done_outlined = + 'file_download_done_outlined'; + static const String file_download_done_rounded = 'file_download_done_rounded'; + static const String file_download_done_sharp = 'file_download_done_sharp'; + static const String file_download_off = 'file_download_off'; + static const String file_download_off_outlined = 'file_download_off_outlined'; + static const String file_download_off_rounded = 'file_download_off_rounded'; + static const String file_download_off_sharp = 'file_download_off_sharp'; + static const String file_download_outlined = 'file_download_outlined'; + static const String file_download_rounded = 'file_download_rounded'; + static const String file_download_sharp = 'file_download_sharp'; + static const String file_open = 'file_open'; + static const String file_open_outlined = 'file_open_outlined'; + static const String file_open_rounded = 'file_open_rounded'; + static const String file_open_sharp = 'file_open_sharp'; + static const String file_present = 'file_present'; + static const String file_present_outlined = 'file_present_outlined'; + static const String file_present_rounded = 'file_present_rounded'; + static const String file_present_sharp = 'file_present_sharp'; + static const String file_upload = 'file_upload'; + static const String file_upload_outlined = 'file_upload_outlined'; + static const String file_upload_rounded = 'file_upload_rounded'; + static const String file_upload_sharp = 'file_upload_sharp'; + static const String filter = 'filter'; + static const String filter_1 = 'filter_1'; + static const String filter_1_outlined = 'filter_1_outlined'; + static const String filter_1_rounded = 'filter_1_rounded'; + static const String filter_1_sharp = 'filter_1_sharp'; + static const String filter_2 = 'filter_2'; + static const String filter_2_outlined = 'filter_2_outlined'; + static const String filter_2_rounded = 'filter_2_rounded'; + static const String filter_2_sharp = 'filter_2_sharp'; + static const String filter_3 = 'filter_3'; + static const String filter_3_outlined = 'filter_3_outlined'; + static const String filter_3_rounded = 'filter_3_rounded'; + static const String filter_3_sharp = 'filter_3_sharp'; + static const String filter_4 = 'filter_4'; + static const String filter_4_outlined = 'filter_4_outlined'; + static const String filter_4_rounded = 'filter_4_rounded'; + static const String filter_4_sharp = 'filter_4_sharp'; + static const String filter_5 = 'filter_5'; + static const String filter_5_outlined = 'filter_5_outlined'; + static const String filter_5_rounded = 'filter_5_rounded'; + static const String filter_5_sharp = 'filter_5_sharp'; + static const String filter_6 = 'filter_6'; + static const String filter_6_outlined = 'filter_6_outlined'; + static const String filter_6_rounded = 'filter_6_rounded'; + static const String filter_6_sharp = 'filter_6_sharp'; + static const String filter_7 = 'filter_7'; + static const String filter_7_outlined = 'filter_7_outlined'; + static const String filter_7_rounded = 'filter_7_rounded'; + static const String filter_7_sharp = 'filter_7_sharp'; + static const String filter_8 = 'filter_8'; + static const String filter_8_outlined = 'filter_8_outlined'; + static const String filter_8_rounded = 'filter_8_rounded'; + static const String filter_8_sharp = 'filter_8_sharp'; + static const String filter_9 = 'filter_9'; + static const String filter_9_outlined = 'filter_9_outlined'; + static const String filter_9_plus = 'filter_9_plus'; + static const String filter_9_plus_outlined = 'filter_9_plus_outlined'; + static const String filter_9_plus_rounded = 'filter_9_plus_rounded'; + static const String filter_9_plus_sharp = 'filter_9_plus_sharp'; + static const String filter_9_rounded = 'filter_9_rounded'; + static const String filter_9_sharp = 'filter_9_sharp'; + static const String filter_alt = 'filter_alt'; + static const String filter_alt_off = 'filter_alt_off'; + static const String filter_alt_off_outlined = 'filter_alt_off_outlined'; + static const String filter_alt_off_rounded = 'filter_alt_off_rounded'; + static const String filter_alt_off_sharp = 'filter_alt_off_sharp'; + static const String filter_alt_outlined = 'filter_alt_outlined'; + static const String filter_alt_rounded = 'filter_alt_rounded'; + static const String filter_alt_sharp = 'filter_alt_sharp'; + static const String filter_b_and_w = 'filter_b_and_w'; + static const String filter_b_and_w_outlined = 'filter_b_and_w_outlined'; + static const String filter_b_and_w_rounded = 'filter_b_and_w_rounded'; + static const String filter_b_and_w_sharp = 'filter_b_and_w_sharp'; + static const String filter_center_focus = 'filter_center_focus'; + static const String filter_center_focus_outlined = + 'filter_center_focus_outlined'; + static const String filter_center_focus_rounded = + 'filter_center_focus_rounded'; + static const String filter_center_focus_sharp = 'filter_center_focus_sharp'; + static const String filter_drama = 'filter_drama'; + static const String filter_drama_outlined = 'filter_drama_outlined'; + static const String filter_drama_rounded = 'filter_drama_rounded'; + static const String filter_drama_sharp = 'filter_drama_sharp'; + static const String filter_frames = 'filter_frames'; + static const String filter_frames_outlined = 'filter_frames_outlined'; + static const String filter_frames_rounded = 'filter_frames_rounded'; + static const String filter_frames_sharp = 'filter_frames_sharp'; + static const String filter_hdr = 'filter_hdr'; + static const String filter_hdr_outlined = 'filter_hdr_outlined'; + static const String filter_hdr_rounded = 'filter_hdr_rounded'; + static const String filter_hdr_sharp = 'filter_hdr_sharp'; + static const String filter_list = 'filter_list'; + static const String filter_list_alt = 'filter_list_alt'; + static const String filter_list_off = 'filter_list_off'; + static const String filter_list_off_outlined = 'filter_list_off_outlined'; + static const String filter_list_off_rounded = 'filter_list_off_rounded'; + static const String filter_list_off_sharp = 'filter_list_off_sharp'; + static const String filter_list_outlined = 'filter_list_outlined'; + static const String filter_list_rounded = 'filter_list_rounded'; + static const String filter_list_sharp = 'filter_list_sharp'; + static const String filter_none = 'filter_none'; + static const String filter_none_outlined = 'filter_none_outlined'; + static const String filter_none_rounded = 'filter_none_rounded'; + static const String filter_none_sharp = 'filter_none_sharp'; + static const String filter_outlined = 'filter_outlined'; + static const String filter_rounded = 'filter_rounded'; + static const String filter_sharp = 'filter_sharp'; + static const String filter_tilt_shift = 'filter_tilt_shift'; + static const String filter_tilt_shift_outlined = 'filter_tilt_shift_outlined'; + static const String filter_tilt_shift_rounded = 'filter_tilt_shift_rounded'; + static const String filter_tilt_shift_sharp = 'filter_tilt_shift_sharp'; + static const String filter_vintage = 'filter_vintage'; + static const String filter_vintage_outlined = 'filter_vintage_outlined'; + static const String filter_vintage_rounded = 'filter_vintage_rounded'; + static const String filter_vintage_sharp = 'filter_vintage_sharp'; + static const String find_in_page = 'find_in_page'; + static const String find_in_page_outlined = 'find_in_page_outlined'; + static const String find_in_page_rounded = 'find_in_page_rounded'; + static const String find_in_page_sharp = 'find_in_page_sharp'; + static const String find_replace = 'find_replace'; + static const String find_replace_outlined = 'find_replace_outlined'; + static const String find_replace_rounded = 'find_replace_rounded'; + static const String find_replace_sharp = 'find_replace_sharp'; + static const String fingerprint = 'fingerprint'; + static const String fingerprint_outlined = 'fingerprint_outlined'; + static const String fingerprint_rounded = 'fingerprint_rounded'; + static const String fingerprint_sharp = 'fingerprint_sharp'; + static const String fire_extinguisher = 'fire_extinguisher'; + static const String fire_extinguisher_outlined = 'fire_extinguisher_outlined'; + static const String fire_extinguisher_rounded = 'fire_extinguisher_rounded'; + static const String fire_extinguisher_sharp = 'fire_extinguisher_sharp'; + static const String fire_hydrant = 'fire_hydrant'; + static const String fire_hydrant_alt = 'fire_hydrant_alt'; + static const String fire_hydrant_alt_outlined = 'fire_hydrant_alt_outlined'; + static const String fire_hydrant_alt_rounded = 'fire_hydrant_alt_rounded'; + static const String fire_hydrant_alt_sharp = 'fire_hydrant_alt_sharp'; + static const String fire_truck = 'fire_truck'; + static const String fire_truck_outlined = 'fire_truck_outlined'; + static const String fire_truck_rounded = 'fire_truck_rounded'; + static const String fire_truck_sharp = 'fire_truck_sharp'; + static const String fireplace = 'fireplace'; + static const String fireplace_outlined = 'fireplace_outlined'; + static const String fireplace_rounded = 'fireplace_rounded'; + static const String fireplace_sharp = 'fireplace_sharp'; + static const String first_page = 'first_page'; + static const String first_page_outlined = 'first_page_outlined'; + static const String first_page_rounded = 'first_page_rounded'; + static const String first_page_sharp = 'first_page_sharp'; + static const String fit_screen = 'fit_screen'; + static const String fit_screen_outlined = 'fit_screen_outlined'; + static const String fit_screen_rounded = 'fit_screen_rounded'; + static const String fit_screen_sharp = 'fit_screen_sharp'; + static const String fitbit = 'fitbit'; + static const String fitbit_outlined = 'fitbit_outlined'; + static const String fitbit_rounded = 'fitbit_rounded'; + static const String fitbit_sharp = 'fitbit_sharp'; + static const String fitness_center = 'fitness_center'; + static const String fitness_center_outlined = 'fitness_center_outlined'; + static const String fitness_center_rounded = 'fitness_center_rounded'; + static const String fitness_center_sharp = 'fitness_center_sharp'; + static const String five_g = 'five_g'; + static const String five_g_outlined = 'five_g_outlined'; + static const String five_g_rounded = 'five_g_rounded'; + static const String five_g_sharp = 'five_g_sharp'; + static const String five_k = 'five_k'; + static const String five_k_outlined = 'five_k_outlined'; + static const String five_k_plus = 'five_k_plus'; + static const String five_k_plus_outlined = 'five_k_plus_outlined'; + static const String five_k_plus_rounded = 'five_k_plus_rounded'; + static const String five_k_plus_sharp = 'five_k_plus_sharp'; + static const String five_k_rounded = 'five_k_rounded'; + static const String five_k_sharp = 'five_k_sharp'; + static const String five_mp = 'five_mp'; + static const String five_mp_outlined = 'five_mp_outlined'; + static const String five_mp_rounded = 'five_mp_rounded'; + static const String five_mp_sharp = 'five_mp_sharp'; + static const String flag = 'flag'; + static const String flag_circle = 'flag_circle'; + static const String flag_circle_outlined = 'flag_circle_outlined'; + static const String flag_circle_rounded = 'flag_circle_rounded'; + static const String flag_circle_sharp = 'flag_circle_sharp'; + static const String flag_outlined = 'flag_outlined'; + static const String flag_rounded = 'flag_rounded'; + static const String flag_sharp = 'flag_sharp'; + static const String flaky = 'flaky'; + static const String flaky_outlined = 'flaky_outlined'; + static const String flaky_rounded = 'flaky_rounded'; + static const String flaky_sharp = 'flaky_sharp'; + static const String flare = 'flare'; + static const String flare_outlined = 'flare_outlined'; + static const String flare_rounded = 'flare_rounded'; + static const String flare_sharp = 'flare_sharp'; + static const String flash_auto = 'flash_auto'; + static const String flash_auto_outlined = 'flash_auto_outlined'; + static const String flash_auto_rounded = 'flash_auto_rounded'; + static const String flash_auto_sharp = 'flash_auto_sharp'; + static const String flash_off = 'flash_off'; + static const String flash_off_outlined = 'flash_off_outlined'; + static const String flash_off_rounded = 'flash_off_rounded'; + static const String flash_off_sharp = 'flash_off_sharp'; + static const String flash_on = 'flash_on'; + static const String flash_on_outlined = 'flash_on_outlined'; + static const String flash_on_rounded = 'flash_on_rounded'; + static const String flash_on_sharp = 'flash_on_sharp'; + static const String flashlight_off = 'flashlight_off'; + static const String flashlight_off_outlined = 'flashlight_off_outlined'; + static const String flashlight_off_rounded = 'flashlight_off_rounded'; + static const String flashlight_off_sharp = 'flashlight_off_sharp'; + static const String flashlight_on = 'flashlight_on'; + static const String flashlight_on_outlined = 'flashlight_on_outlined'; + static const String flashlight_on_rounded = 'flashlight_on_rounded'; + static const String flashlight_on_sharp = 'flashlight_on_sharp'; + static const String flatware = 'flatware'; + static const String flatware_outlined = 'flatware_outlined'; + static const String flatware_rounded = 'flatware_rounded'; + static const String flatware_sharp = 'flatware_sharp'; + static const String flight = 'flight'; + static const String flight_class = 'flight_class'; + static const String flight_class_outlined = 'flight_class_outlined'; + static const String flight_class_rounded = 'flight_class_rounded'; + static const String flight_class_sharp = 'flight_class_sharp'; + static const String flight_land = 'flight_land'; + static const String flight_land_outlined = 'flight_land_outlined'; + static const String flight_land_rounded = 'flight_land_rounded'; + static const String flight_land_sharp = 'flight_land_sharp'; + static const String flight_outlined = 'flight_outlined'; + static const String flight_rounded = 'flight_rounded'; + static const String flight_sharp = 'flight_sharp'; + static const String flight_takeoff = 'flight_takeoff'; + static const String flight_takeoff_outlined = 'flight_takeoff_outlined'; + static const String flight_takeoff_rounded = 'flight_takeoff_rounded'; + static const String flight_takeoff_sharp = 'flight_takeoff_sharp'; + static const String flip = 'flip'; + static const String flip_camera_android = 'flip_camera_android'; + static const String flip_camera_android_outlined = + 'flip_camera_android_outlined'; + static const String flip_camera_android_rounded = + 'flip_camera_android_rounded'; + static const String flip_camera_android_sharp = 'flip_camera_android_sharp'; + static const String flip_camera_ios = 'flip_camera_ios'; + static const String flip_camera_ios_outlined = 'flip_camera_ios_outlined'; + static const String flip_camera_ios_rounded = 'flip_camera_ios_rounded'; + static const String flip_camera_ios_sharp = 'flip_camera_ios_sharp'; + static const String flip_outlined = 'flip_outlined'; + static const String flip_rounded = 'flip_rounded'; + static const String flip_sharp = 'flip_sharp'; + static const String flip_to_back = 'flip_to_back'; + static const String flip_to_back_outlined = 'flip_to_back_outlined'; + static const String flip_to_back_rounded = 'flip_to_back_rounded'; + static const String flip_to_back_sharp = 'flip_to_back_sharp'; + static const String flip_to_front = 'flip_to_front'; + static const String flip_to_front_outlined = 'flip_to_front_outlined'; + static const String flip_to_front_rounded = 'flip_to_front_rounded'; + static const String flip_to_front_sharp = 'flip_to_front_sharp'; + static const String flood = 'flood'; + static const String flood_outlined = 'flood_outlined'; + static const String flood_rounded = 'flood_rounded'; + static const String flood_sharp = 'flood_sharp'; + static const String flourescent = 'flourescent'; + static const String flourescent_outlined = 'flourescent_outlined'; + static const String flourescent_rounded = 'flourescent_rounded'; + static const String flourescent_sharp = 'flourescent_sharp'; + static const String flutter_dash = 'flutter_dash'; + static const String flutter_dash_outlined = 'flutter_dash_outlined'; + static const String flutter_dash_rounded = 'flutter_dash_rounded'; + static const String flutter_dash_sharp = 'flutter_dash_sharp'; + static const String fmd_bad = 'fmd_bad'; + static const String fmd_bad_outlined = 'fmd_bad_outlined'; + static const String fmd_bad_rounded = 'fmd_bad_rounded'; + static const String fmd_bad_sharp = 'fmd_bad_sharp'; + static const String fmd_good = 'fmd_good'; + static const String fmd_good_outlined = 'fmd_good_outlined'; + static const String fmd_good_rounded = 'fmd_good_rounded'; + static const String fmd_good_sharp = 'fmd_good_sharp'; + static const String foggy = 'foggy'; + static const String folder = 'folder'; + static const String folder_copy = 'folder_copy'; + static const String folder_copy_outlined = 'folder_copy_outlined'; + static const String folder_copy_rounded = 'folder_copy_rounded'; + static const String folder_copy_sharp = 'folder_copy_sharp'; + static const String folder_delete = 'folder_delete'; + static const String folder_delete_outlined = 'folder_delete_outlined'; + static const String folder_delete_rounded = 'folder_delete_rounded'; + static const String folder_delete_sharp = 'folder_delete_sharp'; + static const String folder_off = 'folder_off'; + static const String folder_off_outlined = 'folder_off_outlined'; + static const String folder_off_rounded = 'folder_off_rounded'; + static const String folder_off_sharp = 'folder_off_sharp'; + static const String folder_open = 'folder_open'; + static const String folder_open_outlined = 'folder_open_outlined'; + static const String folder_open_rounded = 'folder_open_rounded'; + static const String folder_open_sharp = 'folder_open_sharp'; + static const String folder_outlined = 'folder_outlined'; + static const String folder_rounded = 'folder_rounded'; + static const String folder_shared = 'folder_shared'; + static const String folder_shared_outlined = 'folder_shared_outlined'; + static const String folder_shared_rounded = 'folder_shared_rounded'; + static const String folder_shared_sharp = 'folder_shared_sharp'; + static const String folder_sharp = 'folder_sharp'; + static const String folder_special = 'folder_special'; + static const String folder_special_outlined = 'folder_special_outlined'; + static const String folder_special_rounded = 'folder_special_rounded'; + static const String folder_special_sharp = 'folder_special_sharp'; + static const String folder_zip = 'folder_zip'; + static const String folder_zip_outlined = 'folder_zip_outlined'; + static const String folder_zip_rounded = 'folder_zip_rounded'; + static const String folder_zip_sharp = 'folder_zip_sharp'; + static const String follow_the_signs = 'follow_the_signs'; + static const String follow_the_signs_outlined = 'follow_the_signs_outlined'; + static const String follow_the_signs_rounded = 'follow_the_signs_rounded'; + static const String follow_the_signs_sharp = 'follow_the_signs_sharp'; + static const String font_download = 'font_download'; + static const String font_download_off = 'font_download_off'; + static const String font_download_off_outlined = 'font_download_off_outlined'; + static const String font_download_off_rounded = 'font_download_off_rounded'; + static const String font_download_off_sharp = 'font_download_off_sharp'; + static const String font_download_outlined = 'font_download_outlined'; + static const String font_download_rounded = 'font_download_rounded'; + static const String font_download_sharp = 'font_download_sharp'; + static const String food_bank = 'food_bank'; + static const String food_bank_outlined = 'food_bank_outlined'; + static const String food_bank_rounded = 'food_bank_rounded'; + static const String food_bank_sharp = 'food_bank_sharp'; + static const String forest = 'forest'; + static const String forest_outlined = 'forest_outlined'; + static const String forest_rounded = 'forest_rounded'; + static const String forest_sharp = 'forest_sharp'; + static const String fork_left = 'fork_left'; + static const String fork_left_outlined = 'fork_left_outlined'; + static const String fork_left_rounded = 'fork_left_rounded'; + static const String fork_left_sharp = 'fork_left_sharp'; + static const String fork_right = 'fork_right'; + static const String fork_right_outlined = 'fork_right_outlined'; + static const String fork_right_rounded = 'fork_right_rounded'; + static const String fork_right_sharp = 'fork_right_sharp'; + static const String format_align_center = 'format_align_center'; + static const String format_align_center_outlined = + 'format_align_center_outlined'; + static const String format_align_center_rounded = + 'format_align_center_rounded'; + static const String format_align_center_sharp = 'format_align_center_sharp'; + static const String format_align_justify = 'format_align_justify'; + static const String format_align_justify_outlined = + 'format_align_justify_outlined'; + static const String format_align_justify_rounded = + 'format_align_justify_rounded'; + static const String format_align_justify_sharp = 'format_align_justify_sharp'; + static const String format_align_left = 'format_align_left'; + static const String format_align_left_outlined = 'format_align_left_outlined'; + static const String format_align_left_rounded = 'format_align_left_rounded'; + static const String format_align_left_sharp = 'format_align_left_sharp'; + static const String format_align_right = 'format_align_right'; + static const String format_align_right_outlined = + 'format_align_right_outlined'; + static const String format_align_right_rounded = 'format_align_right_rounded'; + static const String format_align_right_sharp = 'format_align_right_sharp'; + static const String format_bold = 'format_bold'; + static const String format_bold_outlined = 'format_bold_outlined'; + static const String format_bold_rounded = 'format_bold_rounded'; + static const String format_bold_sharp = 'format_bold_sharp'; + static const String format_clear = 'format_clear'; + static const String format_clear_outlined = 'format_clear_outlined'; + static const String format_clear_rounded = 'format_clear_rounded'; + static const String format_clear_sharp = 'format_clear_sharp'; + static const String format_color_fill = 'format_color_fill'; + static const String format_color_fill_outlined = 'format_color_fill_outlined'; + static const String format_color_fill_rounded = 'format_color_fill_rounded'; + static const String format_color_fill_sharp = 'format_color_fill_sharp'; + static const String format_color_reset = 'format_color_reset'; + static const String format_color_reset_outlined = + 'format_color_reset_outlined'; + static const String format_color_reset_rounded = 'format_color_reset_rounded'; + static const String format_color_reset_sharp = 'format_color_reset_sharp'; + static const String format_color_text = 'format_color_text'; + static const String format_color_text_outlined = 'format_color_text_outlined'; + static const String format_color_text_rounded = 'format_color_text_rounded'; + static const String format_color_text_sharp = 'format_color_text_sharp'; + static const String format_indent_decrease = 'format_indent_decrease'; + static const String format_indent_decrease_outlined = + 'format_indent_decrease_outlined'; + static const String format_indent_decrease_rounded = + 'format_indent_decrease_rounded'; + static const String format_indent_decrease_sharp = + 'format_indent_decrease_sharp'; + static const String format_indent_increase = 'format_indent_increase'; + static const String format_indent_increase_outlined = + 'format_indent_increase_outlined'; + static const String format_indent_increase_rounded = + 'format_indent_increase_rounded'; + static const String format_indent_increase_sharp = + 'format_indent_increase_sharp'; + static const String format_italic = 'format_italic'; + static const String format_italic_outlined = 'format_italic_outlined'; + static const String format_italic_rounded = 'format_italic_rounded'; + static const String format_italic_sharp = 'format_italic_sharp'; + static const String format_line_spacing = 'format_line_spacing'; + static const String format_line_spacing_outlined = + 'format_line_spacing_outlined'; + static const String format_line_spacing_rounded = + 'format_line_spacing_rounded'; + static const String format_line_spacing_sharp = 'format_line_spacing_sharp'; + static const String format_list_bulleted = 'format_list_bulleted'; + static const String format_list_bulleted_outlined = + 'format_list_bulleted_outlined'; + static const String format_list_bulleted_rounded = + 'format_list_bulleted_rounded'; + static const String format_list_bulleted_sharp = 'format_list_bulleted_sharp'; + static const String format_list_numbered = 'format_list_numbered'; + static const String format_list_numbered_outlined = + 'format_list_numbered_outlined'; + static const String format_list_numbered_rounded = + 'format_list_numbered_rounded'; + static const String format_list_numbered_rtl = 'format_list_numbered_rtl'; + static const String format_list_numbered_rtl_outlined = + 'format_list_numbered_rtl_outlined'; + static const String format_list_numbered_rtl_rounded = + 'format_list_numbered_rtl_rounded'; + static const String format_list_numbered_rtl_sharp = + 'format_list_numbered_rtl_sharp'; + static const String format_list_numbered_sharp = 'format_list_numbered_sharp'; + static const String format_overline = 'format_overline'; + static const String format_overline_outlined = 'format_overline_outlined'; + static const String format_overline_rounded = 'format_overline_rounded'; + static const String format_overline_sharp = 'format_overline_sharp'; + static const String format_paint = 'format_paint'; + static const String format_paint_outlined = 'format_paint_outlined'; + static const String format_paint_rounded = 'format_paint_rounded'; + static const String format_paint_sharp = 'format_paint_sharp'; + static const String format_quote = 'format_quote'; + static const String format_quote_outlined = 'format_quote_outlined'; + static const String format_quote_rounded = 'format_quote_rounded'; + static const String format_quote_sharp = 'format_quote_sharp'; + static const String format_shapes = 'format_shapes'; + static const String format_shapes_outlined = 'format_shapes_outlined'; + static const String format_shapes_rounded = 'format_shapes_rounded'; + static const String format_shapes_sharp = 'format_shapes_sharp'; + static const String format_size = 'format_size'; + static const String format_size_outlined = 'format_size_outlined'; + static const String format_size_rounded = 'format_size_rounded'; + static const String format_size_sharp = 'format_size_sharp'; + static const String format_strikethrough = 'format_strikethrough'; + static const String format_strikethrough_outlined = + 'format_strikethrough_outlined'; + static const String format_strikethrough_rounded = + 'format_strikethrough_rounded'; + static const String format_strikethrough_sharp = 'format_strikethrough_sharp'; + static const String format_textdirection_l_to_r = + 'format_textdirection_l_to_r'; + static const String format_textdirection_l_to_r_outlined = + 'format_textdirection_l_to_r_outlined'; + static const String format_textdirection_l_to_r_rounded = + 'format_textdirection_l_to_r_rounded'; + static const String format_textdirection_l_to_r_sharp = + 'format_textdirection_l_to_r_sharp'; + static const String format_textdirection_r_to_l = + 'format_textdirection_r_to_l'; + static const String format_textdirection_r_to_l_outlined = + 'format_textdirection_r_to_l_outlined'; + static const String format_textdirection_r_to_l_rounded = + 'format_textdirection_r_to_l_rounded'; + static const String format_textdirection_r_to_l_sharp = + 'format_textdirection_r_to_l_sharp'; + static const String format_underline = 'format_underline'; + static const String format_underline_outlined = 'format_underline_outlined'; + static const String format_underline_rounded = 'format_underline_rounded'; + static const String format_underline_sharp = 'format_underline_sharp'; + static const String format_underlined = 'format_underlined'; + static const String format_underlined_outlined = 'format_underlined_outlined'; + static const String format_underlined_rounded = 'format_underlined_rounded'; + static const String format_underlined_sharp = 'format_underlined_sharp'; + static const String fort = 'fort'; + static const String fort_outlined = 'fort_outlined'; + static const String fort_rounded = 'fort_rounded'; + static const String fort_sharp = 'fort_sharp'; + static const String forum = 'forum'; + static const String forum_outlined = 'forum_outlined'; + static const String forum_rounded = 'forum_rounded'; + static const String forum_sharp = 'forum_sharp'; + static const String forward = 'forward'; + static const String forward_10 = 'forward_10'; + static const String forward_10_outlined = 'forward_10_outlined'; + static const String forward_10_rounded = 'forward_10_rounded'; + static const String forward_10_sharp = 'forward_10_sharp'; + static const String forward_30 = 'forward_30'; + static const String forward_30_outlined = 'forward_30_outlined'; + static const String forward_30_rounded = 'forward_30_rounded'; + static const String forward_30_sharp = 'forward_30_sharp'; + static const String forward_5 = 'forward_5'; + static const String forward_5_outlined = 'forward_5_outlined'; + static const String forward_5_rounded = 'forward_5_rounded'; + static const String forward_5_sharp = 'forward_5_sharp'; + static const String forward_outlined = 'forward_outlined'; + static const String forward_rounded = 'forward_rounded'; + static const String forward_sharp = 'forward_sharp'; + static const String forward_to_inbox = 'forward_to_inbox'; + static const String forward_to_inbox_outlined = 'forward_to_inbox_outlined'; + static const String forward_to_inbox_rounded = 'forward_to_inbox_rounded'; + static const String forward_to_inbox_sharp = 'forward_to_inbox_sharp'; + static const String foundation = 'foundation'; + static const String foundation_outlined = 'foundation_outlined'; + static const String foundation_rounded = 'foundation_rounded'; + static const String foundation_sharp = 'foundation_sharp'; + static const String four_g_mobiledata = 'four_g_mobiledata'; + static const String four_g_mobiledata_outlined = 'four_g_mobiledata_outlined'; + static const String four_g_mobiledata_rounded = 'four_g_mobiledata_rounded'; + static const String four_g_mobiledata_sharp = 'four_g_mobiledata_sharp'; + static const String four_g_plus_mobiledata = 'four_g_plus_mobiledata'; + static const String four_g_plus_mobiledata_outlined = + 'four_g_plus_mobiledata_outlined'; + static const String four_g_plus_mobiledata_rounded = + 'four_g_plus_mobiledata_rounded'; + static const String four_g_plus_mobiledata_sharp = + 'four_g_plus_mobiledata_sharp'; + static const String four_k = 'four_k'; + static const String four_k_outlined = 'four_k_outlined'; + static const String four_k_plus = 'four_k_plus'; + static const String four_k_plus_outlined = 'four_k_plus_outlined'; + static const String four_k_plus_rounded = 'four_k_plus_rounded'; + static const String four_k_plus_sharp = 'four_k_plus_sharp'; + static const String four_k_rounded = 'four_k_rounded'; + static const String four_k_sharp = 'four_k_sharp'; + static const String four_mp = 'four_mp'; + static const String four_mp_outlined = 'four_mp_outlined'; + static const String four_mp_rounded = 'four_mp_rounded'; + static const String four_mp_sharp = 'four_mp_sharp'; + static const String fourteen_mp = 'fourteen_mp'; + static const String fourteen_mp_outlined = 'fourteen_mp_outlined'; + static const String fourteen_mp_rounded = 'fourteen_mp_rounded'; + static const String fourteen_mp_sharp = 'fourteen_mp_sharp'; + static const String free_breakfast = 'free_breakfast'; + static const String free_breakfast_outlined = 'free_breakfast_outlined'; + static const String free_breakfast_rounded = 'free_breakfast_rounded'; + static const String free_breakfast_sharp = 'free_breakfast_sharp'; + static const String free_cancellation = 'free_cancellation'; + static const String free_cancellation_outlined = 'free_cancellation_outlined'; + static const String free_cancellation_rounded = 'free_cancellation_rounded'; + static const String free_cancellation_sharp = 'free_cancellation_sharp'; + static const String front_hand = 'front_hand'; + static const String front_hand_outlined = 'front_hand_outlined'; + static const String front_hand_rounded = 'front_hand_rounded'; + static const String front_hand_sharp = 'front_hand_sharp'; + static const String fullscreen = 'fullscreen'; + static const String fullscreen_exit = 'fullscreen_exit'; + static const String fullscreen_exit_outlined = 'fullscreen_exit_outlined'; + static const String fullscreen_exit_rounded = 'fullscreen_exit_rounded'; + static const String fullscreen_exit_sharp = 'fullscreen_exit_sharp'; + static const String fullscreen_outlined = 'fullscreen_outlined'; + static const String fullscreen_rounded = 'fullscreen_rounded'; + static const String fullscreen_sharp = 'fullscreen_sharp'; + static const String functions = 'functions'; + static const String functions_outlined = 'functions_outlined'; + static const String functions_rounded = 'functions_rounded'; + static const String functions_sharp = 'functions_sharp'; + static const String g_mobiledata = 'g_mobiledata'; + static const String g_mobiledata_outlined = 'g_mobiledata_outlined'; + static const String g_mobiledata_rounded = 'g_mobiledata_rounded'; + static const String g_mobiledata_sharp = 'g_mobiledata_sharp'; + static const String g_translate = 'g_translate'; + static const String g_translate_outlined = 'g_translate_outlined'; + static const String g_translate_rounded = 'g_translate_rounded'; + static const String g_translate_sharp = 'g_translate_sharp'; + static const String gamepad = 'gamepad'; + static const String gamepad_outlined = 'gamepad_outlined'; + static const String gamepad_rounded = 'gamepad_rounded'; + static const String gamepad_sharp = 'gamepad_sharp'; + static const String games = 'games'; + static const String games_outlined = 'games_outlined'; + static const String games_rounded = 'games_rounded'; + static const String games_sharp = 'games_sharp'; + static const String garage = 'garage'; + static const String garage_outlined = 'garage_outlined'; + static const String garage_rounded = 'garage_rounded'; + static const String garage_sharp = 'garage_sharp'; + static const String gas_meter = 'gas_meter'; + static const String gas_meter_outlined = 'gas_meter_outlined'; + static const String gas_meter_rounded = 'gas_meter_rounded'; + static const String gas_meter_sharp = 'gas_meter_sharp'; + static const String gavel = 'gavel'; + static const String gavel_outlined = 'gavel_outlined'; + static const String gavel_rounded = 'gavel_rounded'; + static const String gavel_sharp = 'gavel_sharp'; + static const String generating_tokens = 'generating_tokens'; + static const String generating_tokens_outlined = 'generating_tokens_outlined'; + static const String generating_tokens_rounded = 'generating_tokens_rounded'; + static const String generating_tokens_sharp = 'generating_tokens_sharp'; + static const String gesture = 'gesture'; + static const String gesture_outlined = 'gesture_outlined'; + static const String gesture_rounded = 'gesture_rounded'; + static const String gesture_sharp = 'gesture_sharp'; + static const String get_app = 'get_app'; + static const String get_app_outlined = 'get_app_outlined'; + static const String get_app_rounded = 'get_app_rounded'; + static const String get_app_sharp = 'get_app_sharp'; + static const String gif = 'gif'; + static const String gif_box = 'gif_box'; + static const String gif_box_outlined = 'gif_box_outlined'; + static const String gif_box_rounded = 'gif_box_rounded'; + static const String gif_box_sharp = 'gif_box_sharp'; + static const String gif_outlined = 'gif_outlined'; + static const String gif_rounded = 'gif_rounded'; + static const String gif_sharp = 'gif_sharp'; + static const String girl = 'girl'; + static const String girl_outlined = 'girl_outlined'; + static const String girl_rounded = 'girl_rounded'; + static const String girl_sharp = 'girl_sharp'; + static const String gite = 'gite'; + static const String gite_outlined = 'gite_outlined'; + static const String gite_rounded = 'gite_rounded'; + static const String gite_sharp = 'gite_sharp'; + static const String golf_course = 'golf_course'; + static const String golf_course_outlined = 'golf_course_outlined'; + static const String golf_course_rounded = 'golf_course_rounded'; + static const String golf_course_sharp = 'golf_course_sharp'; + static const String gpp_bad = 'gpp_bad'; + static const String gpp_bad_outlined = 'gpp_bad_outlined'; + static const String gpp_bad_rounded = 'gpp_bad_rounded'; + static const String gpp_bad_sharp = 'gpp_bad_sharp'; + static const String gpp_good = 'gpp_good'; + static const String gpp_good_outlined = 'gpp_good_outlined'; + static const String gpp_good_rounded = 'gpp_good_rounded'; + static const String gpp_good_sharp = 'gpp_good_sharp'; + static const String gpp_maybe = 'gpp_maybe'; + static const String gpp_maybe_outlined = 'gpp_maybe_outlined'; + static const String gpp_maybe_rounded = 'gpp_maybe_rounded'; + static const String gpp_maybe_sharp = 'gpp_maybe_sharp'; + static const String gps_fixed = 'gps_fixed'; + static const String gps_fixed_outlined = 'gps_fixed_outlined'; + static const String gps_fixed_rounded = 'gps_fixed_rounded'; + static const String gps_fixed_sharp = 'gps_fixed_sharp'; + static const String gps_not_fixed = 'gps_not_fixed'; + static const String gps_not_fixed_outlined = 'gps_not_fixed_outlined'; + static const String gps_not_fixed_rounded = 'gps_not_fixed_rounded'; + static const String gps_not_fixed_sharp = 'gps_not_fixed_sharp'; + static const String gps_off = 'gps_off'; + static const String gps_off_outlined = 'gps_off_outlined'; + static const String gps_off_rounded = 'gps_off_rounded'; + static const String gps_off_sharp = 'gps_off_sharp'; + static const String grade = 'grade'; + static const String grade_outlined = 'grade_outlined'; + static const String grade_rounded = 'grade_rounded'; + static const String grade_sharp = 'grade_sharp'; + static const String gradient = 'gradient'; + static const String gradient_outlined = 'gradient_outlined'; + static const String gradient_rounded = 'gradient_rounded'; + static const String gradient_sharp = 'gradient_sharp'; + static const String grading = 'grading'; + static const String grading_outlined = 'grading_outlined'; + static const String grading_rounded = 'grading_rounded'; + static const String grading_sharp = 'grading_sharp'; + static const String grain = 'grain'; + static const String grain_outlined = 'grain_outlined'; + static const String grain_rounded = 'grain_rounded'; + static const String grain_sharp = 'grain_sharp'; + static const String graphic_eq = 'graphic_eq'; + static const String graphic_eq_outlined = 'graphic_eq_outlined'; + static const String graphic_eq_rounded = 'graphic_eq_rounded'; + static const String graphic_eq_sharp = 'graphic_eq_sharp'; + static const String grass = 'grass'; + static const String grass_outlined = 'grass_outlined'; + static const String grass_rounded = 'grass_rounded'; + static const String grass_sharp = 'grass_sharp'; + static const String grid_3x3 = 'grid_3x3'; + static const String grid_3x3_outlined = 'grid_3x3_outlined'; + static const String grid_3x3_rounded = 'grid_3x3_rounded'; + static const String grid_3x3_sharp = 'grid_3x3_sharp'; + static const String grid_4x4 = 'grid_4x4'; + static const String grid_4x4_outlined = 'grid_4x4_outlined'; + static const String grid_4x4_rounded = 'grid_4x4_rounded'; + static const String grid_4x4_sharp = 'grid_4x4_sharp'; + static const String grid_goldenratio = 'grid_goldenratio'; + static const String grid_goldenratio_outlined = 'grid_goldenratio_outlined'; + static const String grid_goldenratio_rounded = 'grid_goldenratio_rounded'; + static const String grid_goldenratio_sharp = 'grid_goldenratio_sharp'; + static const String grid_off = 'grid_off'; + static const String grid_off_outlined = 'grid_off_outlined'; + static const String grid_off_rounded = 'grid_off_rounded'; + static const String grid_off_sharp = 'grid_off_sharp'; + static const String grid_on = 'grid_on'; + static const String grid_on_outlined = 'grid_on_outlined'; + static const String grid_on_rounded = 'grid_on_rounded'; + static const String grid_on_sharp = 'grid_on_sharp'; + static const String grid_view = 'grid_view'; + static const String grid_view_outlined = 'grid_view_outlined'; + static const String grid_view_rounded = 'grid_view_rounded'; + static const String grid_view_sharp = 'grid_view_sharp'; + static const String group = 'group'; + static const String group_add = 'group_add'; + static const String group_add_outlined = 'group_add_outlined'; + static const String group_add_rounded = 'group_add_rounded'; + static const String group_add_sharp = 'group_add_sharp'; + static const String group_off = 'group_off'; + static const String group_off_outlined = 'group_off_outlined'; + static const String group_off_rounded = 'group_off_rounded'; + static const String group_off_sharp = 'group_off_sharp'; + static const String group_outlined = 'group_outlined'; + static const String group_remove = 'group_remove'; + static const String group_remove_outlined = 'group_remove_outlined'; + static const String group_remove_rounded = 'group_remove_rounded'; + static const String group_remove_sharp = 'group_remove_sharp'; + static const String group_rounded = 'group_rounded'; + static const String group_sharp = 'group_sharp'; + static const String group_work = 'group_work'; + static const String group_work_outlined = 'group_work_outlined'; + static const String group_work_rounded = 'group_work_rounded'; + static const String group_work_sharp = 'group_work_sharp'; + static const String groups = 'groups'; + static const String groups_outlined = 'groups_outlined'; + static const String groups_rounded = 'groups_rounded'; + static const String groups_sharp = 'groups_sharp'; + static const String h_mobiledata = 'h_mobiledata'; + static const String h_mobiledata_outlined = 'h_mobiledata_outlined'; + static const String h_mobiledata_rounded = 'h_mobiledata_rounded'; + static const String h_mobiledata_sharp = 'h_mobiledata_sharp'; + static const String h_plus_mobiledata = 'h_plus_mobiledata'; + static const String h_plus_mobiledata_outlined = 'h_plus_mobiledata_outlined'; + static const String h_plus_mobiledata_rounded = 'h_plus_mobiledata_rounded'; + static const String h_plus_mobiledata_sharp = 'h_plus_mobiledata_sharp'; + static const String hail = 'hail'; + static const String hail_outlined = 'hail_outlined'; + static const String hail_rounded = 'hail_rounded'; + static const String hail_sharp = 'hail_sharp'; + static const String handshake = 'handshake'; + static const String handshake_outlined = 'handshake_outlined'; + static const String handshake_rounded = 'handshake_rounded'; + static const String handshake_sharp = 'handshake_sharp'; + static const String handyman = 'handyman'; + static const String handyman_outlined = 'handyman_outlined'; + static const String handyman_rounded = 'handyman_rounded'; + static const String handyman_sharp = 'handyman_sharp'; + static const String hardware = 'hardware'; + static const String hardware_outlined = 'hardware_outlined'; + static const String hardware_rounded = 'hardware_rounded'; + static const String hardware_sharp = 'hardware_sharp'; + static const String hd = 'hd'; + static const String hd_outlined = 'hd_outlined'; + static const String hd_rounded = 'hd_rounded'; + static const String hd_sharp = 'hd_sharp'; + static const String hdr_auto = 'hdr_auto'; + static const String hdr_auto_outlined = 'hdr_auto_outlined'; + static const String hdr_auto_rounded = 'hdr_auto_rounded'; + static const String hdr_auto_select = 'hdr_auto_select'; + static const String hdr_auto_select_outlined = 'hdr_auto_select_outlined'; + static const String hdr_auto_select_rounded = 'hdr_auto_select_rounded'; + static const String hdr_auto_select_sharp = 'hdr_auto_select_sharp'; + static const String hdr_auto_sharp = 'hdr_auto_sharp'; + static const String hdr_enhanced_select = 'hdr_enhanced_select'; + static const String hdr_enhanced_select_outlined = + 'hdr_enhanced_select_outlined'; + static const String hdr_enhanced_select_rounded = + 'hdr_enhanced_select_rounded'; + static const String hdr_enhanced_select_sharp = 'hdr_enhanced_select_sharp'; + static const String hdr_off = 'hdr_off'; + static const String hdr_off_outlined = 'hdr_off_outlined'; + static const String hdr_off_rounded = 'hdr_off_rounded'; + static const String hdr_off_select = 'hdr_off_select'; + static const String hdr_off_select_outlined = 'hdr_off_select_outlined'; + static const String hdr_off_select_rounded = 'hdr_off_select_rounded'; + static const String hdr_off_select_sharp = 'hdr_off_select_sharp'; + static const String hdr_off_sharp = 'hdr_off_sharp'; + static const String hdr_on = 'hdr_on'; + static const String hdr_on_outlined = 'hdr_on_outlined'; + static const String hdr_on_rounded = 'hdr_on_rounded'; + static const String hdr_on_select = 'hdr_on_select'; + static const String hdr_on_select_outlined = 'hdr_on_select_outlined'; + static const String hdr_on_select_rounded = 'hdr_on_select_rounded'; + static const String hdr_on_select_sharp = 'hdr_on_select_sharp'; + static const String hdr_on_sharp = 'hdr_on_sharp'; + static const String hdr_plus = 'hdr_plus'; + static const String hdr_plus_outlined = 'hdr_plus_outlined'; + static const String hdr_plus_rounded = 'hdr_plus_rounded'; + static const String hdr_plus_sharp = 'hdr_plus_sharp'; + static const String hdr_strong = 'hdr_strong'; + static const String hdr_strong_outlined = 'hdr_strong_outlined'; + static const String hdr_strong_rounded = 'hdr_strong_rounded'; + static const String hdr_strong_sharp = 'hdr_strong_sharp'; + static const String hdr_weak = 'hdr_weak'; + static const String hdr_weak_outlined = 'hdr_weak_outlined'; + static const String hdr_weak_rounded = 'hdr_weak_rounded'; + static const String hdr_weak_sharp = 'hdr_weak_sharp'; + static const String headphones = 'headphones'; + static const String headphones_battery = 'headphones_battery'; + static const String headphones_battery_outlined = + 'headphones_battery_outlined'; + static const String headphones_battery_rounded = 'headphones_battery_rounded'; + static const String headphones_battery_sharp = 'headphones_battery_sharp'; + static const String headphones_outlined = 'headphones_outlined'; + static const String headphones_rounded = 'headphones_rounded'; + static const String headphones_sharp = 'headphones_sharp'; + static const String headset = 'headset'; + static const String headset_mic = 'headset_mic'; + static const String headset_mic_outlined = 'headset_mic_outlined'; + static const String headset_mic_rounded = 'headset_mic_rounded'; + static const String headset_mic_sharp = 'headset_mic_sharp'; + static const String headset_off = 'headset_off'; + static const String headset_off_outlined = 'headset_off_outlined'; + static const String headset_off_rounded = 'headset_off_rounded'; + static const String headset_off_sharp = 'headset_off_sharp'; + static const String headset_outlined = 'headset_outlined'; + static const String headset_rounded = 'headset_rounded'; + static const String headset_sharp = 'headset_sharp'; + static const String healing = 'healing'; + static const String healing_outlined = 'healing_outlined'; + static const String healing_rounded = 'healing_rounded'; + static const String healing_sharp = 'healing_sharp'; + static const String health_and_safety = 'health_and_safety'; + static const String health_and_safety_outlined = 'health_and_safety_outlined'; + static const String health_and_safety_rounded = 'health_and_safety_rounded'; + static const String health_and_safety_sharp = 'health_and_safety_sharp'; + static const String hearing = 'hearing'; + static const String hearing_disabled = 'hearing_disabled'; + static const String hearing_disabled_outlined = 'hearing_disabled_outlined'; + static const String hearing_disabled_rounded = 'hearing_disabled_rounded'; + static const String hearing_disabled_sharp = 'hearing_disabled_sharp'; + static const String hearing_outlined = 'hearing_outlined'; + static const String hearing_rounded = 'hearing_rounded'; + static const String hearing_sharp = 'hearing_sharp'; + static const String heart_broken = 'heart_broken'; + static const String heart_broken_outlined = 'heart_broken_outlined'; + static const String heart_broken_rounded = 'heart_broken_rounded'; + static const String heart_broken_sharp = 'heart_broken_sharp'; + static const String heat_pump = 'heat_pump'; + static const String heat_pump_outlined = 'heat_pump_outlined'; + static const String heat_pump_rounded = 'heat_pump_rounded'; + static const String heat_pump_sharp = 'heat_pump_sharp'; + static const String height = 'height'; + static const String height_outlined = 'height_outlined'; + static const String height_rounded = 'height_rounded'; + static const String height_sharp = 'height_sharp'; + static const String help = 'help'; + static const String help_center = 'help_center'; + static const String help_center_outlined = 'help_center_outlined'; + static const String help_center_rounded = 'help_center_rounded'; + static const String help_center_sharp = 'help_center_sharp'; + static const String help_outline = 'help_outline'; + static const String help_outline_outlined = 'help_outline_outlined'; + static const String help_outline_rounded = 'help_outline_rounded'; + static const String help_outline_sharp = 'help_outline_sharp'; + static const String help_outlined = 'help_outlined'; + static const String help_rounded = 'help_rounded'; + static const String help_sharp = 'help_sharp'; + static const String hevc = 'hevc'; + static const String hevc_outlined = 'hevc_outlined'; + static const String hevc_rounded = 'hevc_rounded'; + static const String hevc_sharp = 'hevc_sharp'; + static const String hexagon = 'hexagon'; + static const String hexagon_outlined = 'hexagon_outlined'; + static const String hexagon_rounded = 'hexagon_rounded'; + static const String hexagon_sharp = 'hexagon_sharp'; + static const String hide_image = 'hide_image'; + static const String hide_image_outlined = 'hide_image_outlined'; + static const String hide_image_rounded = 'hide_image_rounded'; + static const String hide_image_sharp = 'hide_image_sharp'; + static const String hide_source = 'hide_source'; + static const String hide_source_outlined = 'hide_source_outlined'; + static const String hide_source_rounded = 'hide_source_rounded'; + static const String hide_source_sharp = 'hide_source_sharp'; + static const String high_quality = 'high_quality'; + static const String high_quality_outlined = 'high_quality_outlined'; + static const String high_quality_rounded = 'high_quality_rounded'; + static const String high_quality_sharp = 'high_quality_sharp'; + static const String highlight = 'highlight'; + static const String highlight_alt = 'highlight_alt'; + static const String highlight_alt_outlined = 'highlight_alt_outlined'; + static const String highlight_alt_rounded = 'highlight_alt_rounded'; + static const String highlight_alt_sharp = 'highlight_alt_sharp'; + static const String highlight_off = 'highlight_off'; + static const String highlight_off_outlined = 'highlight_off_outlined'; + static const String highlight_off_rounded = 'highlight_off_rounded'; + static const String highlight_off_sharp = 'highlight_off_sharp'; + static const String highlight_outlined = 'highlight_outlined'; + static const String highlight_remove = 'highlight_remove'; + static const String highlight_remove_outlined = 'highlight_remove_outlined'; + static const String highlight_remove_rounded = 'highlight_remove_rounded'; + static const String highlight_remove_sharp = 'highlight_remove_sharp'; + static const String highlight_rounded = 'highlight_rounded'; + static const String highlight_sharp = 'highlight_sharp'; + static const String hiking = 'hiking'; + static const String hiking_outlined = 'hiking_outlined'; + static const String hiking_rounded = 'hiking_rounded'; + static const String hiking_sharp = 'hiking_sharp'; + static const String history = 'history'; + static const String history_edu = 'history_edu'; + static const String history_edu_outlined = 'history_edu_outlined'; + static const String history_edu_rounded = 'history_edu_rounded'; + static const String history_edu_sharp = 'history_edu_sharp'; + static const String history_outlined = 'history_outlined'; + static const String history_rounded = 'history_rounded'; + static const String history_sharp = 'history_sharp'; + static const String history_toggle_off = 'history_toggle_off'; + static const String history_toggle_off_outlined = + 'history_toggle_off_outlined'; + static const String history_toggle_off_rounded = 'history_toggle_off_rounded'; + static const String history_toggle_off_sharp = 'history_toggle_off_sharp'; + static const String hive = 'hive'; + static const String hive_outlined = 'hive_outlined'; + static const String hive_rounded = 'hive_rounded'; + static const String hive_sharp = 'hive_sharp'; + static const String hls = 'hls'; + static const String hls_off = 'hls_off'; + static const String hls_off_outlined = 'hls_off_outlined'; + static const String hls_off_rounded = 'hls_off_rounded'; + static const String hls_off_sharp = 'hls_off_sharp'; + static const String hls_outlined = 'hls_outlined'; + static const String hls_rounded = 'hls_rounded'; + static const String hls_sharp = 'hls_sharp'; + static const String holiday_village = 'holiday_village'; + static const String holiday_village_outlined = 'holiday_village_outlined'; + static const String holiday_village_rounded = 'holiday_village_rounded'; + static const String holiday_village_sharp = 'holiday_village_sharp'; + static const String home = 'home'; + static const String home_filled = 'home_filled'; + static const String home_max = 'home_max'; + static const String home_max_outlined = 'home_max_outlined'; + static const String home_max_rounded = 'home_max_rounded'; + static const String home_max_sharp = 'home_max_sharp'; + static const String home_mini = 'home_mini'; + static const String home_mini_outlined = 'home_mini_outlined'; + static const String home_mini_rounded = 'home_mini_rounded'; + static const String home_mini_sharp = 'home_mini_sharp'; + static const String home_outlined = 'home_outlined'; + static const String home_repair_service = 'home_repair_service'; + static const String home_repair_service_outlined = + 'home_repair_service_outlined'; + static const String home_repair_service_rounded = + 'home_repair_service_rounded'; + static const String home_repair_service_sharp = 'home_repair_service_sharp'; + static const String home_rounded = 'home_rounded'; + static const String home_sharp = 'home_sharp'; + static const String home_work = 'home_work'; + static const String home_work_outlined = 'home_work_outlined'; + static const String home_work_rounded = 'home_work_rounded'; + static const String home_work_sharp = 'home_work_sharp'; + static const String horizontal_distribute = 'horizontal_distribute'; + static const String horizontal_distribute_outlined = + 'horizontal_distribute_outlined'; + static const String horizontal_distribute_rounded = + 'horizontal_distribute_rounded'; + static const String horizontal_distribute_sharp = + 'horizontal_distribute_sharp'; + static const String horizontal_rule = 'horizontal_rule'; + static const String horizontal_rule_outlined = 'horizontal_rule_outlined'; + static const String horizontal_rule_rounded = 'horizontal_rule_rounded'; + static const String horizontal_rule_sharp = 'horizontal_rule_sharp'; + static const String horizontal_split = 'horizontal_split'; + static const String horizontal_split_outlined = 'horizontal_split_outlined'; + static const String horizontal_split_rounded = 'horizontal_split_rounded'; + static const String horizontal_split_sharp = 'horizontal_split_sharp'; + static const String hot_tub = 'hot_tub'; + static const String hot_tub_outlined = 'hot_tub_outlined'; + static const String hot_tub_rounded = 'hot_tub_rounded'; + static const String hot_tub_sharp = 'hot_tub_sharp'; + static const String hotel = 'hotel'; + static const String hotel_class = 'hotel_class'; + static const String hotel_class_outlined = 'hotel_class_outlined'; + static const String hotel_class_rounded = 'hotel_class_rounded'; + static const String hotel_class_sharp = 'hotel_class_sharp'; + static const String hotel_outlined = 'hotel_outlined'; + static const String hotel_rounded = 'hotel_rounded'; + static const String hotel_sharp = 'hotel_sharp'; + static const String hourglass_bottom = 'hourglass_bottom'; + static const String hourglass_bottom_outlined = 'hourglass_bottom_outlined'; + static const String hourglass_bottom_rounded = 'hourglass_bottom_rounded'; + static const String hourglass_bottom_sharp = 'hourglass_bottom_sharp'; + static const String hourglass_disabled = 'hourglass_disabled'; + static const String hourglass_disabled_outlined = + 'hourglass_disabled_outlined'; + static const String hourglass_disabled_rounded = 'hourglass_disabled_rounded'; + static const String hourglass_disabled_sharp = 'hourglass_disabled_sharp'; + static const String hourglass_empty = 'hourglass_empty'; + static const String hourglass_empty_outlined = 'hourglass_empty_outlined'; + static const String hourglass_empty_rounded = 'hourglass_empty_rounded'; + static const String hourglass_empty_sharp = 'hourglass_empty_sharp'; + static const String hourglass_full = 'hourglass_full'; + static const String hourglass_full_outlined = 'hourglass_full_outlined'; + static const String hourglass_full_rounded = 'hourglass_full_rounded'; + static const String hourglass_full_sharp = 'hourglass_full_sharp'; + static const String hourglass_top = 'hourglass_top'; + static const String hourglass_top_outlined = 'hourglass_top_outlined'; + static const String hourglass_top_rounded = 'hourglass_top_rounded'; + static const String hourglass_top_sharp = 'hourglass_top_sharp'; + static const String house = 'house'; + static const String house_outlined = 'house_outlined'; + static const String house_rounded = 'house_rounded'; + static const String house_sharp = 'house_sharp'; + static const String house_siding = 'house_siding'; + static const String house_siding_outlined = 'house_siding_outlined'; + static const String house_siding_rounded = 'house_siding_rounded'; + static const String house_siding_sharp = 'house_siding_sharp'; + static const String houseboat = 'houseboat'; + static const String houseboat_outlined = 'houseboat_outlined'; + static const String houseboat_rounded = 'houseboat_rounded'; + static const String houseboat_sharp = 'houseboat_sharp'; + static const String how_to_reg = 'how_to_reg'; + static const String how_to_reg_outlined = 'how_to_reg_outlined'; + static const String how_to_reg_rounded = 'how_to_reg_rounded'; + static const String how_to_reg_sharp = 'how_to_reg_sharp'; + static const String how_to_vote = 'how_to_vote'; + static const String how_to_vote_outlined = 'how_to_vote_outlined'; + static const String how_to_vote_rounded = 'how_to_vote_rounded'; + static const String how_to_vote_sharp = 'how_to_vote_sharp'; + static const String html = 'html'; + static const String html_outlined = 'html_outlined'; + static const String html_rounded = 'html_rounded'; + static const String html_sharp = 'html_sharp'; + static const String http = 'http'; + static const String http_outlined = 'http_outlined'; + static const String http_rounded = 'http_rounded'; + static const String http_sharp = 'http_sharp'; + static const String https = 'https'; + static const String https_outlined = 'https_outlined'; + static const String https_rounded = 'https_rounded'; + static const String https_sharp = 'https_sharp'; + static const String hub = 'hub'; + static const String hub_outlined = 'hub_outlined'; + static const String hub_rounded = 'hub_rounded'; + static const String hub_sharp = 'hub_sharp'; + static const String hvac = 'hvac'; + static const String hvac_outlined = 'hvac_outlined'; + static const String hvac_rounded = 'hvac_rounded'; + static const String hvac_sharp = 'hvac_sharp'; + static const String ice_skating = 'ice_skating'; + static const String ice_skating_outlined = 'ice_skating_outlined'; + static const String ice_skating_rounded = 'ice_skating_rounded'; + static const String ice_skating_sharp = 'ice_skating_sharp'; + static const String icecream = 'icecream'; + static const String icecream_outlined = 'icecream_outlined'; + static const String icecream_rounded = 'icecream_rounded'; + static const String icecream_sharp = 'icecream_sharp'; + static const String image = 'image'; + static const String image_aspect_ratio = 'image_aspect_ratio'; + static const String image_aspect_ratio_outlined = + 'image_aspect_ratio_outlined'; + static const String image_aspect_ratio_rounded = 'image_aspect_ratio_rounded'; + static const String image_aspect_ratio_sharp = 'image_aspect_ratio_sharp'; + static const String image_not_supported = 'image_not_supported'; + static const String image_not_supported_outlined = + 'image_not_supported_outlined'; + static const String image_not_supported_rounded = + 'image_not_supported_rounded'; + static const String image_not_supported_sharp = 'image_not_supported_sharp'; + static const String image_outlined = 'image_outlined'; + static const String image_rounded = 'image_rounded'; + static const String image_search = 'image_search'; + static const String image_search_outlined = 'image_search_outlined'; + static const String image_search_rounded = 'image_search_rounded'; + static const String image_search_sharp = 'image_search_sharp'; + static const String image_sharp = 'image_sharp'; + static const String imagesearch_roller = 'imagesearch_roller'; + static const String imagesearch_roller_outlined = + 'imagesearch_roller_outlined'; + static const String imagesearch_roller_rounded = 'imagesearch_roller_rounded'; + static const String imagesearch_roller_sharp = 'imagesearch_roller_sharp'; + static const String import_contacts = 'import_contacts'; + static const String import_contacts_outlined = 'import_contacts_outlined'; + static const String import_contacts_rounded = 'import_contacts_rounded'; + static const String import_contacts_sharp = 'import_contacts_sharp'; + static const String import_export = 'import_export'; + static const String import_export_outlined = 'import_export_outlined'; + static const String import_export_rounded = 'import_export_rounded'; + static const String import_export_sharp = 'import_export_sharp'; + static const String important_devices = 'important_devices'; + static const String important_devices_outlined = 'important_devices_outlined'; + static const String important_devices_rounded = 'important_devices_rounded'; + static const String important_devices_sharp = 'important_devices_sharp'; + static const String inbox = 'inbox'; + static const String inbox_outlined = 'inbox_outlined'; + static const String inbox_rounded = 'inbox_rounded'; + static const String inbox_sharp = 'inbox_sharp'; + static const String incomplete_circle = 'incomplete_circle'; + static const String incomplete_circle_outlined = 'incomplete_circle_outlined'; + static const String incomplete_circle_rounded = 'incomplete_circle_rounded'; + static const String incomplete_circle_sharp = 'incomplete_circle_sharp'; + static const String indeterminate_check_box = 'indeterminate_check_box'; + static const String indeterminate_check_box_outlined = + 'indeterminate_check_box_outlined'; + static const String indeterminate_check_box_rounded = + 'indeterminate_check_box_rounded'; + static const String indeterminate_check_box_sharp = + 'indeterminate_check_box_sharp'; + static const String info = 'info'; + static const String info_outline = 'info_outline'; + static const String info_outline_rounded = 'info_outline_rounded'; + static const String info_outline_sharp = 'info_outline_sharp'; + static const String info_outlined = 'info_outlined'; + static const String info_rounded = 'info_rounded'; + static const String info_sharp = 'info_sharp'; + static const String input = 'input'; + static const String input_outlined = 'input_outlined'; + static const String input_rounded = 'input_rounded'; + static const String input_sharp = 'input_sharp'; + static const String insert_chart = 'insert_chart'; + static const String insert_chart_outlined = 'insert_chart_outlined'; + static const String insert_chart_outlined_outlined = + 'insert_chart_outlined_outlined'; + static const String insert_chart_outlined_rounded = + 'insert_chart_outlined_rounded'; + static const String insert_chart_outlined_sharp = + 'insert_chart_outlined_sharp'; + static const String insert_chart_rounded = 'insert_chart_rounded'; + static const String insert_chart_sharp = 'insert_chart_sharp'; + static const String insert_comment = 'insert_comment'; + static const String insert_comment_outlined = 'insert_comment_outlined'; + static const String insert_comment_rounded = 'insert_comment_rounded'; + static const String insert_comment_sharp = 'insert_comment_sharp'; + static const String insert_drive_file = 'insert_drive_file'; + static const String insert_drive_file_outlined = 'insert_drive_file_outlined'; + static const String insert_drive_file_rounded = 'insert_drive_file_rounded'; + static const String insert_drive_file_sharp = 'insert_drive_file_sharp'; + static const String insert_emoticon = 'insert_emoticon'; + static const String insert_emoticon_outlined = 'insert_emoticon_outlined'; + static const String insert_emoticon_rounded = 'insert_emoticon_rounded'; + static const String insert_emoticon_sharp = 'insert_emoticon_sharp'; + static const String insert_invitation = 'insert_invitation'; + static const String insert_invitation_outlined = 'insert_invitation_outlined'; + static const String insert_invitation_rounded = 'insert_invitation_rounded'; + static const String insert_invitation_sharp = 'insert_invitation_sharp'; + static const String insert_link = 'insert_link'; + static const String insert_link_outlined = 'insert_link_outlined'; + static const String insert_link_rounded = 'insert_link_rounded'; + static const String insert_link_sharp = 'insert_link_sharp'; + static const String insert_page_break = 'insert_page_break'; + static const String insert_page_break_outlined = 'insert_page_break_outlined'; + static const String insert_page_break_rounded = 'insert_page_break_rounded'; + static const String insert_page_break_sharp = 'insert_page_break_sharp'; + static const String insert_photo = 'insert_photo'; + static const String insert_photo_outlined = 'insert_photo_outlined'; + static const String insert_photo_rounded = 'insert_photo_rounded'; + static const String insert_photo_sharp = 'insert_photo_sharp'; + static const String insights = 'insights'; + static const String insights_outlined = 'insights_outlined'; + static const String insights_rounded = 'insights_rounded'; + static const String insights_sharp = 'insights_sharp'; + static const String install_desktop = 'install_desktop'; + static const String install_desktop_outlined = 'install_desktop_outlined'; + static const String install_desktop_rounded = 'install_desktop_rounded'; + static const String install_desktop_sharp = 'install_desktop_sharp'; + static const String install_mobile = 'install_mobile'; + static const String install_mobile_outlined = 'install_mobile_outlined'; + static const String install_mobile_rounded = 'install_mobile_rounded'; + static const String install_mobile_sharp = 'install_mobile_sharp'; + static const String integration_instructions = 'integration_instructions'; + static const String integration_instructions_outlined = + 'integration_instructions_outlined'; + static const String integration_instructions_rounded = + 'integration_instructions_rounded'; + static const String integration_instructions_sharp = + 'integration_instructions_sharp'; + static const String interests = 'interests'; + static const String interests_outlined = 'interests_outlined'; + static const String interests_rounded = 'interests_rounded'; + static const String interests_sharp = 'interests_sharp'; + static const String interpreter_mode = 'interpreter_mode'; + static const String interpreter_mode_outlined = 'interpreter_mode_outlined'; + static const String interpreter_mode_rounded = 'interpreter_mode_rounded'; + static const String interpreter_mode_sharp = 'interpreter_mode_sharp'; + static const String inventory = 'inventory'; + static const String inventory_2 = 'inventory_2'; + static const String inventory_2_outlined = 'inventory_2_outlined'; + static const String inventory_2_rounded = 'inventory_2_rounded'; + static const String inventory_2_sharp = 'inventory_2_sharp'; + static const String inventory_outlined = 'inventory_outlined'; + static const String inventory_rounded = 'inventory_rounded'; + static const String inventory_sharp = 'inventory_sharp'; + static const String invert_colors = 'invert_colors'; + static const String invert_colors_off = 'invert_colors_off'; + static const String invert_colors_off_outlined = 'invert_colors_off_outlined'; + static const String invert_colors_off_rounded = 'invert_colors_off_rounded'; + static const String invert_colors_off_sharp = 'invert_colors_off_sharp'; + static const String invert_colors_on = 'invert_colors_on'; + static const String invert_colors_on_outlined = 'invert_colors_on_outlined'; + static const String invert_colors_on_rounded = 'invert_colors_on_rounded'; + static const String invert_colors_on_sharp = 'invert_colors_on_sharp'; + static const String invert_colors_outlined = 'invert_colors_outlined'; + static const String invert_colors_rounded = 'invert_colors_rounded'; + static const String invert_colors_sharp = 'invert_colors_sharp'; + static const String ios_share = 'ios_share'; + static const String ios_share_outlined = 'ios_share_outlined'; + static const String ios_share_rounded = 'ios_share_rounded'; + static const String ios_share_sharp = 'ios_share_sharp'; + static const String iron = 'iron'; + static const String iron_outlined = 'iron_outlined'; + static const String iron_rounded = 'iron_rounded'; + static const String iron_sharp = 'iron_sharp'; + static const String iso = 'iso'; + static const String iso_outlined = 'iso_outlined'; + static const String iso_rounded = 'iso_rounded'; + static const String iso_sharp = 'iso_sharp'; + static const String javascript = 'javascript'; + static const String javascript_outlined = 'javascript_outlined'; + static const String javascript_rounded = 'javascript_rounded'; + static const String javascript_sharp = 'javascript_sharp'; + static const String join_full = 'join_full'; + static const String join_full_outlined = 'join_full_outlined'; + static const String join_full_rounded = 'join_full_rounded'; + static const String join_full_sharp = 'join_full_sharp'; + static const String join_inner = 'join_inner'; + static const String join_inner_outlined = 'join_inner_outlined'; + static const String join_inner_rounded = 'join_inner_rounded'; + static const String join_inner_sharp = 'join_inner_sharp'; + static const String join_left = 'join_left'; + static const String join_left_outlined = 'join_left_outlined'; + static const String join_left_rounded = 'join_left_rounded'; + static const String join_left_sharp = 'join_left_sharp'; + static const String join_right = 'join_right'; + static const String join_right_outlined = 'join_right_outlined'; + static const String join_right_rounded = 'join_right_rounded'; + static const String join_right_sharp = 'join_right_sharp'; + static const String kayaking = 'kayaking'; + static const String kayaking_outlined = 'kayaking_outlined'; + static const String kayaking_rounded = 'kayaking_rounded'; + static const String kayaking_sharp = 'kayaking_sharp'; + static const String kebab_dining = 'kebab_dining'; + static const String kebab_dining_outlined = 'kebab_dining_outlined'; + static const String kebab_dining_rounded = 'kebab_dining_rounded'; + static const String kebab_dining_sharp = 'kebab_dining_sharp'; + static const String key = 'key'; + static const String key_off = 'key_off'; + static const String key_off_outlined = 'key_off_outlined'; + static const String key_off_rounded = 'key_off_rounded'; + static const String key_off_sharp = 'key_off_sharp'; + static const String key_outlined = 'key_outlined'; + static const String key_rounded = 'key_rounded'; + static const String key_sharp = 'key_sharp'; + static const String keyboard = 'keyboard'; + static const String keyboard_alt = 'keyboard_alt'; + static const String keyboard_alt_outlined = 'keyboard_alt_outlined'; + static const String keyboard_alt_rounded = 'keyboard_alt_rounded'; + static const String keyboard_alt_sharp = 'keyboard_alt_sharp'; + static const String keyboard_arrow_down = 'keyboard_arrow_down'; + static const String keyboard_arrow_down_outlined = + 'keyboard_arrow_down_outlined'; + static const String keyboard_arrow_down_rounded = + 'keyboard_arrow_down_rounded'; + static const String keyboard_arrow_down_sharp = 'keyboard_arrow_down_sharp'; + static const String keyboard_arrow_left = 'keyboard_arrow_left'; + static const String keyboard_arrow_left_outlined = + 'keyboard_arrow_left_outlined'; + static const String keyboard_arrow_left_rounded = + 'keyboard_arrow_left_rounded'; + static const String keyboard_arrow_left_sharp = 'keyboard_arrow_left_sharp'; + static const String keyboard_arrow_right = 'keyboard_arrow_right'; + static const String keyboard_arrow_right_outlined = + 'keyboard_arrow_right_outlined'; + static const String keyboard_arrow_right_rounded = + 'keyboard_arrow_right_rounded'; + static const String keyboard_arrow_right_sharp = 'keyboard_arrow_right_sharp'; + static const String keyboard_arrow_up = 'keyboard_arrow_up'; + static const String keyboard_arrow_up_outlined = 'keyboard_arrow_up_outlined'; + static const String keyboard_arrow_up_rounded = 'keyboard_arrow_up_rounded'; + static const String keyboard_arrow_up_sharp = 'keyboard_arrow_up_sharp'; + static const String keyboard_backspace = 'keyboard_backspace'; + static const String keyboard_backspace_outlined = + 'keyboard_backspace_outlined'; + static const String keyboard_backspace_rounded = 'keyboard_backspace_rounded'; + static const String keyboard_backspace_sharp = 'keyboard_backspace_sharp'; + static const String keyboard_capslock = 'keyboard_capslock'; + static const String keyboard_capslock_outlined = 'keyboard_capslock_outlined'; + static const String keyboard_capslock_rounded = 'keyboard_capslock_rounded'; + static const String keyboard_capslock_sharp = 'keyboard_capslock_sharp'; + static const String keyboard_command_key = 'keyboard_command_key'; + static const String keyboard_command_key_outlined = + 'keyboard_command_key_outlined'; + static const String keyboard_command_key_rounded = + 'keyboard_command_key_rounded'; + static const String keyboard_command_key_sharp = 'keyboard_command_key_sharp'; + static const String keyboard_control = 'keyboard_control'; + static const String keyboard_control_key = 'keyboard_control_key'; + static const String keyboard_control_key_outlined = + 'keyboard_control_key_outlined'; + static const String keyboard_control_key_rounded = + 'keyboard_control_key_rounded'; + static const String keyboard_control_key_sharp = 'keyboard_control_key_sharp'; + static const String keyboard_control_outlined = 'keyboard_control_outlined'; + static const String keyboard_control_rounded = 'keyboard_control_rounded'; + static const String keyboard_control_sharp = 'keyboard_control_sharp'; + static const String keyboard_double_arrow_down = 'keyboard_double_arrow_down'; + static const String keyboard_double_arrow_down_outlined = + 'keyboard_double_arrow_down_outlined'; + static const String keyboard_double_arrow_down_rounded = + 'keyboard_double_arrow_down_rounded'; + static const String keyboard_double_arrow_down_sharp = + 'keyboard_double_arrow_down_sharp'; + static const String keyboard_double_arrow_left = 'keyboard_double_arrow_left'; + static const String keyboard_double_arrow_left_outlined = + 'keyboard_double_arrow_left_outlined'; + static const String keyboard_double_arrow_left_rounded = + 'keyboard_double_arrow_left_rounded'; + static const String keyboard_double_arrow_left_sharp = + 'keyboard_double_arrow_left_sharp'; + static const String keyboard_double_arrow_right = + 'keyboard_double_arrow_right'; + static const String keyboard_double_arrow_right_outlined = + 'keyboard_double_arrow_right_outlined'; + static const String keyboard_double_arrow_right_rounded = + 'keyboard_double_arrow_right_rounded'; + static const String keyboard_double_arrow_right_sharp = + 'keyboard_double_arrow_right_sharp'; + static const String keyboard_double_arrow_up = 'keyboard_double_arrow_up'; + static const String keyboard_double_arrow_up_outlined = + 'keyboard_double_arrow_up_outlined'; + static const String keyboard_double_arrow_up_rounded = + 'keyboard_double_arrow_up_rounded'; + static const String keyboard_double_arrow_up_sharp = + 'keyboard_double_arrow_up_sharp'; + static const String keyboard_hide = 'keyboard_hide'; + static const String keyboard_hide_outlined = 'keyboard_hide_outlined'; + static const String keyboard_hide_rounded = 'keyboard_hide_rounded'; + static const String keyboard_hide_sharp = 'keyboard_hide_sharp'; + static const String keyboard_option_key = 'keyboard_option_key'; + static const String keyboard_option_key_outlined = + 'keyboard_option_key_outlined'; + static const String keyboard_option_key_rounded = + 'keyboard_option_key_rounded'; + static const String keyboard_option_key_sharp = 'keyboard_option_key_sharp'; + static const String keyboard_outlined = 'keyboard_outlined'; + static const String keyboard_return = 'keyboard_return'; + static const String keyboard_return_outlined = 'keyboard_return_outlined'; + static const String keyboard_return_rounded = 'keyboard_return_rounded'; + static const String keyboard_return_sharp = 'keyboard_return_sharp'; + static const String keyboard_rounded = 'keyboard_rounded'; + static const String keyboard_sharp = 'keyboard_sharp'; + static const String keyboard_tab = 'keyboard_tab'; + static const String keyboard_tab_outlined = 'keyboard_tab_outlined'; + static const String keyboard_tab_rounded = 'keyboard_tab_rounded'; + static const String keyboard_tab_sharp = 'keyboard_tab_sharp'; + static const String keyboard_voice = 'keyboard_voice'; + static const String keyboard_voice_outlined = 'keyboard_voice_outlined'; + static const String keyboard_voice_rounded = 'keyboard_voice_rounded'; + static const String keyboard_voice_sharp = 'keyboard_voice_sharp'; + static const String king_bed = 'king_bed'; + static const String king_bed_outlined = 'king_bed_outlined'; + static const String king_bed_rounded = 'king_bed_rounded'; + static const String king_bed_sharp = 'king_bed_sharp'; + static const String kitchen = 'kitchen'; + static const String kitchen_outlined = 'kitchen_outlined'; + static const String kitchen_rounded = 'kitchen_rounded'; + static const String kitchen_sharp = 'kitchen_sharp'; + static const String kitesurfing = 'kitesurfing'; + static const String kitesurfing_outlined = 'kitesurfing_outlined'; + static const String kitesurfing_rounded = 'kitesurfing_rounded'; + static const String kitesurfing_sharp = 'kitesurfing_sharp'; + static const String label = 'label'; + static const String label_important = 'label_important'; + static const String label_important_outline = 'label_important_outline'; + static const String label_important_outline_rounded = + 'label_important_outline_rounded'; + static const String label_important_outline_sharp = + 'label_important_outline_sharp'; + static const String label_important_outlined = 'label_important_outlined'; + static const String label_important_rounded = 'label_important_rounded'; + static const String label_important_sharp = 'label_important_sharp'; + static const String label_off = 'label_off'; + static const String label_off_outlined = 'label_off_outlined'; + static const String label_off_rounded = 'label_off_rounded'; + static const String label_off_sharp = 'label_off_sharp'; + static const String label_outline = 'label_outline'; + static const String label_outline_rounded = 'label_outline_rounded'; + static const String label_outline_sharp = 'label_outline_sharp'; + static const String label_outlined = 'label_outlined'; + static const String label_rounded = 'label_rounded'; + static const String label_sharp = 'label_sharp'; + static const String lan = 'lan'; + static const String lan_outlined = 'lan_outlined'; + static const String lan_rounded = 'lan_rounded'; + static const String lan_sharp = 'lan_sharp'; + static const String landscape = 'landscape'; + static const String landscape_outlined = 'landscape_outlined'; + static const String landscape_rounded = 'landscape_rounded'; + static const String landscape_sharp = 'landscape_sharp'; + static const String landslide = 'landslide'; + static const String landslide_outlined = 'landslide_outlined'; + static const String landslide_rounded = 'landslide_rounded'; + static const String landslide_sharp = 'landslide_sharp'; + static const String language = 'language'; + static const String language_outlined = 'language_outlined'; + static const String language_rounded = 'language_rounded'; + static const String language_sharp = 'language_sharp'; + static const String laptop = 'laptop'; + static const String laptop_chromebook = 'laptop_chromebook'; + static const String laptop_chromebook_outlined = 'laptop_chromebook_outlined'; + static const String laptop_chromebook_rounded = 'laptop_chromebook_rounded'; + static const String laptop_chromebook_sharp = 'laptop_chromebook_sharp'; + static const String laptop_mac = 'laptop_mac'; + static const String laptop_mac_outlined = 'laptop_mac_outlined'; + static const String laptop_mac_rounded = 'laptop_mac_rounded'; + static const String laptop_mac_sharp = 'laptop_mac_sharp'; + static const String laptop_outlined = 'laptop_outlined'; + static const String laptop_rounded = 'laptop_rounded'; + static const String laptop_sharp = 'laptop_sharp'; + static const String laptop_windows = 'laptop_windows'; + static const String laptop_windows_outlined = 'laptop_windows_outlined'; + static const String laptop_windows_rounded = 'laptop_windows_rounded'; + static const String laptop_windows_sharp = 'laptop_windows_sharp'; + static const String last_page = 'last_page'; + static const String last_page_outlined = 'last_page_outlined'; + static const String last_page_rounded = 'last_page_rounded'; + static const String last_page_sharp = 'last_page_sharp'; + static const String launch = 'launch'; + static const String launch_outlined = 'launch_outlined'; + static const String launch_rounded = 'launch_rounded'; + static const String launch_sharp = 'launch_sharp'; + static const String layers = 'layers'; + static const String layers_clear = 'layers_clear'; + static const String layers_clear_outlined = 'layers_clear_outlined'; + static const String layers_clear_rounded = 'layers_clear_rounded'; + static const String layers_clear_sharp = 'layers_clear_sharp'; + static const String layers_outlined = 'layers_outlined'; + static const String layers_rounded = 'layers_rounded'; + static const String layers_sharp = 'layers_sharp'; + static const String leaderboard = 'leaderboard'; + static const String leaderboard_outlined = 'leaderboard_outlined'; + static const String leaderboard_rounded = 'leaderboard_rounded'; + static const String leaderboard_sharp = 'leaderboard_sharp'; + static const String leak_add = 'leak_add'; + static const String leak_add_outlined = 'leak_add_outlined'; + static const String leak_add_rounded = 'leak_add_rounded'; + static const String leak_add_sharp = 'leak_add_sharp'; + static const String leak_remove = 'leak_remove'; + static const String leak_remove_outlined = 'leak_remove_outlined'; + static const String leak_remove_rounded = 'leak_remove_rounded'; + static const String leak_remove_sharp = 'leak_remove_sharp'; + static const String leave_bags_at_home = 'leave_bags_at_home'; + static const String leave_bags_at_home_outlined = + 'leave_bags_at_home_outlined'; + static const String leave_bags_at_home_rounded = 'leave_bags_at_home_rounded'; + static const String leave_bags_at_home_sharp = 'leave_bags_at_home_sharp'; + static const String legend_toggle = 'legend_toggle'; + static const String legend_toggle_outlined = 'legend_toggle_outlined'; + static const String legend_toggle_rounded = 'legend_toggle_rounded'; + static const String legend_toggle_sharp = 'legend_toggle_sharp'; + static const String lens = 'lens'; + static const String lens_blur = 'lens_blur'; + static const String lens_blur_outlined = 'lens_blur_outlined'; + static const String lens_blur_rounded = 'lens_blur_rounded'; + static const String lens_blur_sharp = 'lens_blur_sharp'; + static const String lens_outlined = 'lens_outlined'; + static const String lens_rounded = 'lens_rounded'; + static const String lens_sharp = 'lens_sharp'; + static const String library_add = 'library_add'; + static const String library_add_check = 'library_add_check'; + static const String library_add_check_outlined = 'library_add_check_outlined'; + static const String library_add_check_rounded = 'library_add_check_rounded'; + static const String library_add_check_sharp = 'library_add_check_sharp'; + static const String library_add_outlined = 'library_add_outlined'; + static const String library_add_rounded = 'library_add_rounded'; + static const String library_add_sharp = 'library_add_sharp'; + static const String library_books = 'library_books'; + static const String library_books_outlined = 'library_books_outlined'; + static const String library_books_rounded = 'library_books_rounded'; + static const String library_books_sharp = 'library_books_sharp'; + static const String library_music = 'library_music'; + static const String library_music_outlined = 'library_music_outlined'; + static const String library_music_rounded = 'library_music_rounded'; + static const String library_music_sharp = 'library_music_sharp'; + static const String light = 'light'; + static const String light_mode = 'light_mode'; + static const String light_mode_outlined = 'light_mode_outlined'; + static const String light_mode_rounded = 'light_mode_rounded'; + static const String light_mode_sharp = 'light_mode_sharp'; + static const String light_outlined = 'light_outlined'; + static const String light_rounded = 'light_rounded'; + static const String light_sharp = 'light_sharp'; + static const String lightbulb = 'lightbulb'; + static const String lightbulb_circle = 'lightbulb_circle'; + static const String lightbulb_circle_outlined = 'lightbulb_circle_outlined'; + static const String lightbulb_circle_rounded = 'lightbulb_circle_rounded'; + static const String lightbulb_circle_sharp = 'lightbulb_circle_sharp'; + static const String lightbulb_outline = 'lightbulb_outline'; + static const String lightbulb_outline_rounded = 'lightbulb_outline_rounded'; + static const String lightbulb_outline_sharp = 'lightbulb_outline_sharp'; + static const String lightbulb_outlined = 'lightbulb_outlined'; + static const String lightbulb_rounded = 'lightbulb_rounded'; + static const String lightbulb_sharp = 'lightbulb_sharp'; + static const String line_axis = 'line_axis'; + static const String line_axis_outlined = 'line_axis_outlined'; + static const String line_axis_rounded = 'line_axis_rounded'; + static const String line_axis_sharp = 'line_axis_sharp'; + static const String line_style = 'line_style'; + static const String line_style_outlined = 'line_style_outlined'; + static const String line_style_rounded = 'line_style_rounded'; + static const String line_style_sharp = 'line_style_sharp'; + static const String line_weight = 'line_weight'; + static const String line_weight_outlined = 'line_weight_outlined'; + static const String line_weight_rounded = 'line_weight_rounded'; + static const String line_weight_sharp = 'line_weight_sharp'; + static const String linear_scale = 'linear_scale'; + static const String linear_scale_outlined = 'linear_scale_outlined'; + static const String linear_scale_rounded = 'linear_scale_rounded'; + static const String linear_scale_sharp = 'linear_scale_sharp'; + static const String link = 'link'; + static const String link_off = 'link_off'; + static const String link_off_outlined = 'link_off_outlined'; + static const String link_off_rounded = 'link_off_rounded'; + static const String link_off_sharp = 'link_off_sharp'; + static const String link_outlined = 'link_outlined'; + static const String link_rounded = 'link_rounded'; + static const String link_sharp = 'link_sharp'; + static const String linked_camera = 'linked_camera'; + static const String linked_camera_outlined = 'linked_camera_outlined'; + static const String linked_camera_rounded = 'linked_camera_rounded'; + static const String linked_camera_sharp = 'linked_camera_sharp'; + static const String liquor = 'liquor'; + static const String liquor_outlined = 'liquor_outlined'; + static const String liquor_rounded = 'liquor_rounded'; + static const String liquor_sharp = 'liquor_sharp'; + static const String list = 'list'; + static const String list_alt = 'list_alt'; + static const String list_alt_outlined = 'list_alt_outlined'; + static const String list_alt_rounded = 'list_alt_rounded'; + static const String list_alt_sharp = 'list_alt_sharp'; + static const String list_outlined = 'list_outlined'; + static const String list_rounded = 'list_rounded'; + static const String list_sharp = 'list_sharp'; + static const String live_help = 'live_help'; + static const String live_help_outlined = 'live_help_outlined'; + static const String live_help_rounded = 'live_help_rounded'; + static const String live_help_sharp = 'live_help_sharp'; + static const String live_tv = 'live_tv'; + static const String live_tv_outlined = 'live_tv_outlined'; + static const String live_tv_rounded = 'live_tv_rounded'; + static const String live_tv_sharp = 'live_tv_sharp'; + static const String living = 'living'; + static const String living_outlined = 'living_outlined'; + static const String living_rounded = 'living_rounded'; + static const String living_sharp = 'living_sharp'; + static const String local_activity = 'local_activity'; + static const String local_activity_outlined = 'local_activity_outlined'; + static const String local_activity_rounded = 'local_activity_rounded'; + static const String local_activity_sharp = 'local_activity_sharp'; + static const String local_airport = 'local_airport'; + static const String local_airport_outlined = 'local_airport_outlined'; + static const String local_airport_rounded = 'local_airport_rounded'; + static const String local_airport_sharp = 'local_airport_sharp'; + static const String local_atm = 'local_atm'; + static const String local_atm_outlined = 'local_atm_outlined'; + static const String local_atm_rounded = 'local_atm_rounded'; + static const String local_atm_sharp = 'local_atm_sharp'; + static const String local_attraction = 'local_attraction'; + static const String local_attraction_outlined = 'local_attraction_outlined'; + static const String local_attraction_rounded = 'local_attraction_rounded'; + static const String local_attraction_sharp = 'local_attraction_sharp'; + static const String local_bar = 'local_bar'; + static const String local_bar_outlined = 'local_bar_outlined'; + static const String local_bar_rounded = 'local_bar_rounded'; + static const String local_bar_sharp = 'local_bar_sharp'; + static const String local_cafe = 'local_cafe'; + static const String local_cafe_outlined = 'local_cafe_outlined'; + static const String local_cafe_rounded = 'local_cafe_rounded'; + static const String local_cafe_sharp = 'local_cafe_sharp'; + static const String local_car_wash = 'local_car_wash'; + static const String local_car_wash_outlined = 'local_car_wash_outlined'; + static const String local_car_wash_rounded = 'local_car_wash_rounded'; + static const String local_car_wash_sharp = 'local_car_wash_sharp'; + static const String local_convenience_store = 'local_convenience_store'; + static const String local_convenience_store_outlined = + 'local_convenience_store_outlined'; + static const String local_convenience_store_rounded = + 'local_convenience_store_rounded'; + static const String local_convenience_store_sharp = + 'local_convenience_store_sharp'; + static const String local_dining = 'local_dining'; + static const String local_dining_outlined = 'local_dining_outlined'; + static const String local_dining_rounded = 'local_dining_rounded'; + static const String local_dining_sharp = 'local_dining_sharp'; + static const String local_drink = 'local_drink'; + static const String local_drink_outlined = 'local_drink_outlined'; + static const String local_drink_rounded = 'local_drink_rounded'; + static const String local_drink_sharp = 'local_drink_sharp'; + static const String local_fire_department = 'local_fire_department'; + static const String local_fire_department_outlined = + 'local_fire_department_outlined'; + static const String local_fire_department_rounded = + 'local_fire_department_rounded'; + static const String local_fire_department_sharp = + 'local_fire_department_sharp'; + static const String local_florist = 'local_florist'; + static const String local_florist_outlined = 'local_florist_outlined'; + static const String local_florist_rounded = 'local_florist_rounded'; + static const String local_florist_sharp = 'local_florist_sharp'; + static const String local_gas_station = 'local_gas_station'; + static const String local_gas_station_outlined = 'local_gas_station_outlined'; + static const String local_gas_station_rounded = 'local_gas_station_rounded'; + static const String local_gas_station_sharp = 'local_gas_station_sharp'; + static const String local_grocery_store = 'local_grocery_store'; + static const String local_grocery_store_outlined = + 'local_grocery_store_outlined'; + static const String local_grocery_store_rounded = + 'local_grocery_store_rounded'; + static const String local_grocery_store_sharp = 'local_grocery_store_sharp'; + static const String local_hospital = 'local_hospital'; + static const String local_hospital_outlined = 'local_hospital_outlined'; + static const String local_hospital_rounded = 'local_hospital_rounded'; + static const String local_hospital_sharp = 'local_hospital_sharp'; + static const String local_hotel = 'local_hotel'; + static const String local_hotel_outlined = 'local_hotel_outlined'; + static const String local_hotel_rounded = 'local_hotel_rounded'; + static const String local_hotel_sharp = 'local_hotel_sharp'; + static const String local_laundry_service = 'local_laundry_service'; + static const String local_laundry_service_outlined = + 'local_laundry_service_outlined'; + static const String local_laundry_service_rounded = + 'local_laundry_service_rounded'; + static const String local_laundry_service_sharp = + 'local_laundry_service_sharp'; + static const String local_library = 'local_library'; + static const String local_library_outlined = 'local_library_outlined'; + static const String local_library_rounded = 'local_library_rounded'; + static const String local_library_sharp = 'local_library_sharp'; + static const String local_mall = 'local_mall'; + static const String local_mall_outlined = 'local_mall_outlined'; + static const String local_mall_rounded = 'local_mall_rounded'; + static const String local_mall_sharp = 'local_mall_sharp'; + static const String local_movies = 'local_movies'; + static const String local_movies_outlined = 'local_movies_outlined'; + static const String local_movies_rounded = 'local_movies_rounded'; + static const String local_movies_sharp = 'local_movies_sharp'; + static const String local_offer = 'local_offer'; + static const String local_offer_outlined = 'local_offer_outlined'; + static const String local_offer_rounded = 'local_offer_rounded'; + static const String local_offer_sharp = 'local_offer_sharp'; + static const String local_parking = 'local_parking'; + static const String local_parking_outlined = 'local_parking_outlined'; + static const String local_parking_rounded = 'local_parking_rounded'; + static const String local_parking_sharp = 'local_parking_sharp'; + static const String local_pharmacy = 'local_pharmacy'; + static const String local_pharmacy_outlined = 'local_pharmacy_outlined'; + static const String local_pharmacy_rounded = 'local_pharmacy_rounded'; + static const String local_pharmacy_sharp = 'local_pharmacy_sharp'; + static const String local_phone = 'local_phone'; + static const String local_phone_outlined = 'local_phone_outlined'; + static const String local_phone_rounded = 'local_phone_rounded'; + static const String local_phone_sharp = 'local_phone_sharp'; + static const String local_pizza = 'local_pizza'; + static const String local_pizza_outlined = 'local_pizza_outlined'; + static const String local_pizza_rounded = 'local_pizza_rounded'; + static const String local_pizza_sharp = 'local_pizza_sharp'; + static const String local_play = 'local_play'; + static const String local_play_outlined = 'local_play_outlined'; + static const String local_play_rounded = 'local_play_rounded'; + static const String local_play_sharp = 'local_play_sharp'; + static const String local_police = 'local_police'; + static const String local_police_outlined = 'local_police_outlined'; + static const String local_police_rounded = 'local_police_rounded'; + static const String local_police_sharp = 'local_police_sharp'; + static const String local_post_office = 'local_post_office'; + static const String local_post_office_outlined = 'local_post_office_outlined'; + static const String local_post_office_rounded = 'local_post_office_rounded'; + static const String local_post_office_sharp = 'local_post_office_sharp'; + static const String local_print_shop = 'local_print_shop'; + static const String local_print_shop_outlined = 'local_print_shop_outlined'; + static const String local_print_shop_rounded = 'local_print_shop_rounded'; + static const String local_print_shop_sharp = 'local_print_shop_sharp'; + static const String local_printshop = 'local_printshop'; + static const String local_printshop_outlined = 'local_printshop_outlined'; + static const String local_printshop_rounded = 'local_printshop_rounded'; + static const String local_printshop_sharp = 'local_printshop_sharp'; + static const String local_restaurant = 'local_restaurant'; + static const String local_restaurant_outlined = 'local_restaurant_outlined'; + static const String local_restaurant_rounded = 'local_restaurant_rounded'; + static const String local_restaurant_sharp = 'local_restaurant_sharp'; + static const String local_see = 'local_see'; + static const String local_see_outlined = 'local_see_outlined'; + static const String local_see_rounded = 'local_see_rounded'; + static const String local_see_sharp = 'local_see_sharp'; + static const String local_shipping = 'local_shipping'; + static const String local_shipping_outlined = 'local_shipping_outlined'; + static const String local_shipping_rounded = 'local_shipping_rounded'; + static const String local_shipping_sharp = 'local_shipping_sharp'; + static const String local_taxi = 'local_taxi'; + static const String local_taxi_outlined = 'local_taxi_outlined'; + static const String local_taxi_rounded = 'local_taxi_rounded'; + static const String local_taxi_sharp = 'local_taxi_sharp'; + static const String location_city = 'location_city'; + static const String location_city_outlined = 'location_city_outlined'; + static const String location_city_rounded = 'location_city_rounded'; + static const String location_city_sharp = 'location_city_sharp'; + static const String location_disabled = 'location_disabled'; + static const String location_disabled_outlined = 'location_disabled_outlined'; + static const String location_disabled_rounded = 'location_disabled_rounded'; + static const String location_disabled_sharp = 'location_disabled_sharp'; + static const String location_history = 'location_history'; + static const String location_history_outlined = 'location_history_outlined'; + static const String location_history_rounded = 'location_history_rounded'; + static const String location_history_sharp = 'location_history_sharp'; + static const String location_off = 'location_off'; + static const String location_off_outlined = 'location_off_outlined'; + static const String location_off_rounded = 'location_off_rounded'; + static const String location_off_sharp = 'location_off_sharp'; + static const String location_on = 'location_on'; + static const String location_on_outlined = 'location_on_outlined'; + static const String location_on_rounded = 'location_on_rounded'; + static const String location_on_sharp = 'location_on_sharp'; + static const String location_pin = 'location_pin'; + static const String location_searching = 'location_searching'; + static const String location_searching_outlined = + 'location_searching_outlined'; + static const String location_searching_rounded = 'location_searching_rounded'; + static const String location_searching_sharp = 'location_searching_sharp'; + static const String lock = 'lock'; + static const String lock_clock = 'lock_clock'; + static const String lock_clock_outlined = 'lock_clock_outlined'; + static const String lock_clock_rounded = 'lock_clock_rounded'; + static const String lock_clock_sharp = 'lock_clock_sharp'; + static const String lock_open = 'lock_open'; + static const String lock_open_outlined = 'lock_open_outlined'; + static const String lock_open_rounded = 'lock_open_rounded'; + static const String lock_open_sharp = 'lock_open_sharp'; + static const String lock_outline = 'lock_outline'; + static const String lock_outline_rounded = 'lock_outline_rounded'; + static const String lock_outline_sharp = 'lock_outline_sharp'; + static const String lock_outlined = 'lock_outlined'; + static const String lock_person = 'lock_person'; + static const String lock_person_outlined = 'lock_person_outlined'; + static const String lock_person_rounded = 'lock_person_rounded'; + static const String lock_person_sharp = 'lock_person_sharp'; + static const String lock_reset = 'lock_reset'; + static const String lock_reset_outlined = 'lock_reset_outlined'; + static const String lock_reset_rounded = 'lock_reset_rounded'; + static const String lock_reset_sharp = 'lock_reset_sharp'; + static const String lock_rounded = 'lock_rounded'; + static const String lock_sharp = 'lock_sharp'; + static const String login = 'login'; + static const String login_outlined = 'login_outlined'; + static const String login_rounded = 'login_rounded'; + static const String login_sharp = 'login_sharp'; + static const String logo_dev = 'logo_dev'; + static const String logo_dev_outlined = 'logo_dev_outlined'; + static const String logo_dev_rounded = 'logo_dev_rounded'; + static const String logo_dev_sharp = 'logo_dev_sharp'; + static const String logout = 'logout'; + static const String logout_outlined = 'logout_outlined'; + static const String logout_rounded = 'logout_rounded'; + static const String logout_sharp = 'logout_sharp'; + static const String looks = 'looks'; + static const String looks_3 = 'looks_3'; + static const String looks_3_outlined = 'looks_3_outlined'; + static const String looks_3_rounded = 'looks_3_rounded'; + static const String looks_3_sharp = 'looks_3_sharp'; + static const String looks_4 = 'looks_4'; + static const String looks_4_outlined = 'looks_4_outlined'; + static const String looks_4_rounded = 'looks_4_rounded'; + static const String looks_4_sharp = 'looks_4_sharp'; + static const String looks_5 = 'looks_5'; + static const String looks_5_outlined = 'looks_5_outlined'; + static const String looks_5_rounded = 'looks_5_rounded'; + static const String looks_5_sharp = 'looks_5_sharp'; + static const String looks_6 = 'looks_6'; + static const String looks_6_outlined = 'looks_6_outlined'; + static const String looks_6_rounded = 'looks_6_rounded'; + static const String looks_6_sharp = 'looks_6_sharp'; + static const String looks_one = 'looks_one'; + static const String looks_one_outlined = 'looks_one_outlined'; + static const String looks_one_rounded = 'looks_one_rounded'; + static const String looks_one_sharp = 'looks_one_sharp'; + static const String looks_outlined = 'looks_outlined'; + static const String looks_rounded = 'looks_rounded'; + static const String looks_sharp = 'looks_sharp'; + static const String looks_two = 'looks_two'; + static const String looks_two_outlined = 'looks_two_outlined'; + static const String looks_two_rounded = 'looks_two_rounded'; + static const String looks_two_sharp = 'looks_two_sharp'; + static const String loop = 'loop'; + static const String loop_outlined = 'loop_outlined'; + static const String loop_rounded = 'loop_rounded'; + static const String loop_sharp = 'loop_sharp'; + static const String loupe = 'loupe'; + static const String loupe_outlined = 'loupe_outlined'; + static const String loupe_rounded = 'loupe_rounded'; + static const String loupe_sharp = 'loupe_sharp'; + static const String low_priority = 'low_priority'; + static const String low_priority_outlined = 'low_priority_outlined'; + static const String low_priority_rounded = 'low_priority_rounded'; + static const String low_priority_sharp = 'low_priority_sharp'; + static const String loyalty = 'loyalty'; + static const String loyalty_outlined = 'loyalty_outlined'; + static const String loyalty_rounded = 'loyalty_rounded'; + static const String loyalty_sharp = 'loyalty_sharp'; + static const String lte_mobiledata = 'lte_mobiledata'; + static const String lte_mobiledata_outlined = 'lte_mobiledata_outlined'; + static const String lte_mobiledata_rounded = 'lte_mobiledata_rounded'; + static const String lte_mobiledata_sharp = 'lte_mobiledata_sharp'; + static const String lte_plus_mobiledata = 'lte_plus_mobiledata'; + static const String lte_plus_mobiledata_outlined = + 'lte_plus_mobiledata_outlined'; + static const String lte_plus_mobiledata_rounded = + 'lte_plus_mobiledata_rounded'; + static const String lte_plus_mobiledata_sharp = 'lte_plus_mobiledata_sharp'; + static const String luggage = 'luggage'; + static const String luggage_outlined = 'luggage_outlined'; + static const String luggage_rounded = 'luggage_rounded'; + static const String luggage_sharp = 'luggage_sharp'; + static const String lunch_dining = 'lunch_dining'; + static const String lunch_dining_outlined = 'lunch_dining_outlined'; + static const String lunch_dining_rounded = 'lunch_dining_rounded'; + static const String lunch_dining_sharp = 'lunch_dining_sharp'; + static const String lyrics = 'lyrics'; + static const String lyrics_outlined = 'lyrics_outlined'; + static const String lyrics_rounded = 'lyrics_rounded'; + static const String lyrics_sharp = 'lyrics_sharp'; + static const String mail = 'mail'; + static const String mail_lock = 'mail_lock'; + static const String mail_lock_outlined = 'mail_lock_outlined'; + static const String mail_lock_rounded = 'mail_lock_rounded'; + static const String mail_lock_sharp = 'mail_lock_sharp'; + static const String mail_outline = 'mail_outline'; + static const String mail_outline_outlined = 'mail_outline_outlined'; + static const String mail_outline_rounded = 'mail_outline_rounded'; + static const String mail_outline_sharp = 'mail_outline_sharp'; + static const String mail_outlined = 'mail_outlined'; + static const String mail_rounded = 'mail_rounded'; + static const String mail_sharp = 'mail_sharp'; + static const String male = 'male'; + static const String male_outlined = 'male_outlined'; + static const String male_rounded = 'male_rounded'; + static const String male_sharp = 'male_sharp'; + static const String man = 'man'; + static const String man_outlined = 'man_outlined'; + static const String man_rounded = 'man_rounded'; + static const String man_sharp = 'man_sharp'; + static const String manage_accounts = 'manage_accounts'; + static const String manage_accounts_outlined = 'manage_accounts_outlined'; + static const String manage_accounts_rounded = 'manage_accounts_rounded'; + static const String manage_accounts_sharp = 'manage_accounts_sharp'; + static const String manage_history = 'manage_history'; + static const String manage_history_outlined = 'manage_history_outlined'; + static const String manage_history_rounded = 'manage_history_rounded'; + static const String manage_history_sharp = 'manage_history_sharp'; + static const String manage_search = 'manage_search'; + static const String manage_search_outlined = 'manage_search_outlined'; + static const String manage_search_rounded = 'manage_search_rounded'; + static const String manage_search_sharp = 'manage_search_sharp'; + static const String map = 'map'; + static const String map_outlined = 'map_outlined'; + static const String map_rounded = 'map_rounded'; + static const String map_sharp = 'map_sharp'; + static const String maps_home_work = 'maps_home_work'; + static const String maps_home_work_outlined = 'maps_home_work_outlined'; + static const String maps_home_work_rounded = 'maps_home_work_rounded'; + static const String maps_home_work_sharp = 'maps_home_work_sharp'; + static const String maps_ugc = 'maps_ugc'; + static const String maps_ugc_outlined = 'maps_ugc_outlined'; + static const String maps_ugc_rounded = 'maps_ugc_rounded'; + static const String maps_ugc_sharp = 'maps_ugc_sharp'; + static const String margin = 'margin'; + static const String margin_outlined = 'margin_outlined'; + static const String margin_rounded = 'margin_rounded'; + static const String margin_sharp = 'margin_sharp'; + static const String mark_as_unread = 'mark_as_unread'; + static const String mark_as_unread_outlined = 'mark_as_unread_outlined'; + static const String mark_as_unread_rounded = 'mark_as_unread_rounded'; + static const String mark_as_unread_sharp = 'mark_as_unread_sharp'; + static const String mark_chat_read = 'mark_chat_read'; + static const String mark_chat_read_outlined = 'mark_chat_read_outlined'; + static const String mark_chat_read_rounded = 'mark_chat_read_rounded'; + static const String mark_chat_read_sharp = 'mark_chat_read_sharp'; + static const String mark_chat_unread = 'mark_chat_unread'; + static const String mark_chat_unread_outlined = 'mark_chat_unread_outlined'; + static const String mark_chat_unread_rounded = 'mark_chat_unread_rounded'; + static const String mark_chat_unread_sharp = 'mark_chat_unread_sharp'; + static const String mark_email_read = 'mark_email_read'; + static const String mark_email_read_outlined = 'mark_email_read_outlined'; + static const String mark_email_read_rounded = 'mark_email_read_rounded'; + static const String mark_email_read_sharp = 'mark_email_read_sharp'; + static const String mark_email_unread = 'mark_email_unread'; + static const String mark_email_unread_outlined = 'mark_email_unread_outlined'; + static const String mark_email_unread_rounded = 'mark_email_unread_rounded'; + static const String mark_email_unread_sharp = 'mark_email_unread_sharp'; + static const String mark_unread_chat_alt = 'mark_unread_chat_alt'; + static const String mark_unread_chat_alt_outlined = + 'mark_unread_chat_alt_outlined'; + static const String mark_unread_chat_alt_rounded = + 'mark_unread_chat_alt_rounded'; + static const String mark_unread_chat_alt_sharp = 'mark_unread_chat_alt_sharp'; + static const String markunread = 'markunread'; + static const String markunread_mailbox = 'markunread_mailbox'; + static const String markunread_mailbox_outlined = + 'markunread_mailbox_outlined'; + static const String markunread_mailbox_rounded = 'markunread_mailbox_rounded'; + static const String markunread_mailbox_sharp = 'markunread_mailbox_sharp'; + static const String markunread_outlined = 'markunread_outlined'; + static const String markunread_rounded = 'markunread_rounded'; + static const String markunread_sharp = 'markunread_sharp'; + static const String masks = 'masks'; + static const String masks_outlined = 'masks_outlined'; + static const String masks_rounded = 'masks_rounded'; + static const String masks_sharp = 'masks_sharp'; + static const String maximize = 'maximize'; + static const String maximize_outlined = 'maximize_outlined'; + static const String maximize_rounded = 'maximize_rounded'; + static const String maximize_sharp = 'maximize_sharp'; + static const String media_bluetooth_off = 'media_bluetooth_off'; + static const String media_bluetooth_off_outlined = + 'media_bluetooth_off_outlined'; + static const String media_bluetooth_off_rounded = + 'media_bluetooth_off_rounded'; + static const String media_bluetooth_off_sharp = 'media_bluetooth_off_sharp'; + static const String media_bluetooth_on = 'media_bluetooth_on'; + static const String media_bluetooth_on_outlined = + 'media_bluetooth_on_outlined'; + static const String media_bluetooth_on_rounded = 'media_bluetooth_on_rounded'; + static const String media_bluetooth_on_sharp = 'media_bluetooth_on_sharp'; + static const String mediation = 'mediation'; + static const String mediation_outlined = 'mediation_outlined'; + static const String mediation_rounded = 'mediation_rounded'; + static const String mediation_sharp = 'mediation_sharp'; + static const String medical_information = 'medical_information'; + static const String medical_information_outlined = + 'medical_information_outlined'; + static const String medical_information_rounded = + 'medical_information_rounded'; + static const String medical_information_sharp = 'medical_information_sharp'; + static const String medical_services = 'medical_services'; + static const String medical_services_outlined = 'medical_services_outlined'; + static const String medical_services_rounded = 'medical_services_rounded'; + static const String medical_services_sharp = 'medical_services_sharp'; + static const String medication = 'medication'; + static const String medication_liquid = 'medication_liquid'; + static const String medication_liquid_outlined = 'medication_liquid_outlined'; + static const String medication_liquid_rounded = 'medication_liquid_rounded'; + static const String medication_liquid_sharp = 'medication_liquid_sharp'; + static const String medication_outlined = 'medication_outlined'; + static const String medication_rounded = 'medication_rounded'; + static const String medication_sharp = 'medication_sharp'; + static const String meeting_room = 'meeting_room'; + static const String meeting_room_outlined = 'meeting_room_outlined'; + static const String meeting_room_rounded = 'meeting_room_rounded'; + static const String meeting_room_sharp = 'meeting_room_sharp'; + static const String memory = 'memory'; + static const String memory_outlined = 'memory_outlined'; + static const String memory_rounded = 'memory_rounded'; + static const String memory_sharp = 'memory_sharp'; + static const String menu = 'menu'; + static const String menu_book = 'menu_book'; + static const String menu_book_outlined = 'menu_book_outlined'; + static const String menu_book_rounded = 'menu_book_rounded'; + static const String menu_book_sharp = 'menu_book_sharp'; + static const String menu_open = 'menu_open'; + static const String menu_open_outlined = 'menu_open_outlined'; + static const String menu_open_rounded = 'menu_open_rounded'; + static const String menu_open_sharp = 'menu_open_sharp'; + static const String menu_outlined = 'menu_outlined'; + static const String menu_rounded = 'menu_rounded'; + static const String menu_sharp = 'menu_sharp'; + static const String merge = 'merge'; + static const String merge_outlined = 'merge_outlined'; + static const String merge_rounded = 'merge_rounded'; + static const String merge_sharp = 'merge_sharp'; + static const String merge_type = 'merge_type'; + static const String merge_type_outlined = 'merge_type_outlined'; + static const String merge_type_rounded = 'merge_type_rounded'; + static const String merge_type_sharp = 'merge_type_sharp'; + static const String message = 'message'; + static const String message_outlined = 'message_outlined'; + static const String message_rounded = 'message_rounded'; + static const String message_sharp = 'message_sharp'; + static const String messenger = 'messenger'; + static const String messenger_outline = 'messenger_outline'; + static const String messenger_outline_outlined = 'messenger_outline_outlined'; + static const String messenger_outline_rounded = 'messenger_outline_rounded'; + static const String messenger_outline_sharp = 'messenger_outline_sharp'; + static const String messenger_outlined = 'messenger_outlined'; + static const String messenger_rounded = 'messenger_rounded'; + static const String messenger_sharp = 'messenger_sharp'; + static const String mic = 'mic'; + static const String mic_external_off = 'mic_external_off'; + static const String mic_external_off_outlined = 'mic_external_off_outlined'; + static const String mic_external_off_rounded = 'mic_external_off_rounded'; + static const String mic_external_off_sharp = 'mic_external_off_sharp'; + static const String mic_external_on = 'mic_external_on'; + static const String mic_external_on_outlined = 'mic_external_on_outlined'; + static const String mic_external_on_rounded = 'mic_external_on_rounded'; + static const String mic_external_on_sharp = 'mic_external_on_sharp'; + static const String mic_none = 'mic_none'; + static const String mic_none_outlined = 'mic_none_outlined'; + static const String mic_none_rounded = 'mic_none_rounded'; + static const String mic_none_sharp = 'mic_none_sharp'; + static const String mic_off = 'mic_off'; + static const String mic_off_outlined = 'mic_off_outlined'; + static const String mic_off_rounded = 'mic_off_rounded'; + static const String mic_off_sharp = 'mic_off_sharp'; + static const String mic_outlined = 'mic_outlined'; + static const String mic_rounded = 'mic_rounded'; + static const String mic_sharp = 'mic_sharp'; + static const String microwave = 'microwave'; + static const String microwave_outlined = 'microwave_outlined'; + static const String microwave_rounded = 'microwave_rounded'; + static const String microwave_sharp = 'microwave_sharp'; + static const String military_tech = 'military_tech'; + static const String military_tech_outlined = 'military_tech_outlined'; + static const String military_tech_rounded = 'military_tech_rounded'; + static const String military_tech_sharp = 'military_tech_sharp'; + static const String minimize = 'minimize'; + static const String minimize_outlined = 'minimize_outlined'; + static const String minimize_rounded = 'minimize_rounded'; + static const String minimize_sharp = 'minimize_sharp'; + static const String minor_crash = 'minor_crash'; + static const String minor_crash_outlined = 'minor_crash_outlined'; + static const String minor_crash_rounded = 'minor_crash_rounded'; + static const String minor_crash_sharp = 'minor_crash_sharp'; + static const String miscellaneous_services = 'miscellaneous_services'; + static const String miscellaneous_services_outlined = + 'miscellaneous_services_outlined'; + static const String miscellaneous_services_rounded = + 'miscellaneous_services_rounded'; + static const String miscellaneous_services_sharp = + 'miscellaneous_services_sharp'; + static const String missed_video_call = 'missed_video_call'; + static const String missed_video_call_outlined = 'missed_video_call_outlined'; + static const String missed_video_call_rounded = 'missed_video_call_rounded'; + static const String missed_video_call_sharp = 'missed_video_call_sharp'; + static const String mms = 'mms'; + static const String mms_outlined = 'mms_outlined'; + static const String mms_rounded = 'mms_rounded'; + static const String mms_sharp = 'mms_sharp'; + static const String mobile_friendly = 'mobile_friendly'; + static const String mobile_friendly_outlined = 'mobile_friendly_outlined'; + static const String mobile_friendly_rounded = 'mobile_friendly_rounded'; + static const String mobile_friendly_sharp = 'mobile_friendly_sharp'; + static const String mobile_off = 'mobile_off'; + static const String mobile_off_outlined = 'mobile_off_outlined'; + static const String mobile_off_rounded = 'mobile_off_rounded'; + static const String mobile_off_sharp = 'mobile_off_sharp'; + static const String mobile_screen_share = 'mobile_screen_share'; + static const String mobile_screen_share_outlined = + 'mobile_screen_share_outlined'; + static const String mobile_screen_share_rounded = + 'mobile_screen_share_rounded'; + static const String mobile_screen_share_sharp = 'mobile_screen_share_sharp'; + static const String mobiledata_off = 'mobiledata_off'; + static const String mobiledata_off_outlined = 'mobiledata_off_outlined'; + static const String mobiledata_off_rounded = 'mobiledata_off_rounded'; + static const String mobiledata_off_sharp = 'mobiledata_off_sharp'; + static const String mode = 'mode'; + static const String mode_comment = 'mode_comment'; + static const String mode_comment_outlined = 'mode_comment_outlined'; + static const String mode_comment_rounded = 'mode_comment_rounded'; + static const String mode_comment_sharp = 'mode_comment_sharp'; + static const String mode_edit = 'mode_edit'; + static const String mode_edit_outline = 'mode_edit_outline'; + static const String mode_edit_outline_outlined = 'mode_edit_outline_outlined'; + static const String mode_edit_outline_rounded = 'mode_edit_outline_rounded'; + static const String mode_edit_outline_sharp = 'mode_edit_outline_sharp'; + static const String mode_edit_outlined = 'mode_edit_outlined'; + static const String mode_edit_rounded = 'mode_edit_rounded'; + static const String mode_edit_sharp = 'mode_edit_sharp'; + static const String mode_fan_off = 'mode_fan_off'; + static const String mode_fan_off_outlined = 'mode_fan_off_outlined'; + static const String mode_fan_off_rounded = 'mode_fan_off_rounded'; + static const String mode_fan_off_sharp = 'mode_fan_off_sharp'; + static const String mode_night = 'mode_night'; + static const String mode_night_outlined = 'mode_night_outlined'; + static const String mode_night_rounded = 'mode_night_rounded'; + static const String mode_night_sharp = 'mode_night_sharp'; + static const String mode_of_travel = 'mode_of_travel'; + static const String mode_of_travel_outlined = 'mode_of_travel_outlined'; + static const String mode_of_travel_rounded = 'mode_of_travel_rounded'; + static const String mode_of_travel_sharp = 'mode_of_travel_sharp'; + static const String mode_outlined = 'mode_outlined'; + static const String mode_rounded = 'mode_rounded'; + static const String mode_sharp = 'mode_sharp'; + static const String mode_standby = 'mode_standby'; + static const String mode_standby_outlined = 'mode_standby_outlined'; + static const String mode_standby_rounded = 'mode_standby_rounded'; + static const String mode_standby_sharp = 'mode_standby_sharp'; + static const String model_training = 'model_training'; + static const String model_training_outlined = 'model_training_outlined'; + static const String model_training_rounded = 'model_training_rounded'; + static const String model_training_sharp = 'model_training_sharp'; + static const String monetization_on = 'monetization_on'; + static const String monetization_on_outlined = 'monetization_on_outlined'; + static const String monetization_on_rounded = 'monetization_on_rounded'; + static const String monetization_on_sharp = 'monetization_on_sharp'; + static const String money = 'money'; + static const String money_off = 'money_off'; + static const String money_off_csred = 'money_off_csred'; + static const String money_off_csred_outlined = 'money_off_csred_outlined'; + static const String money_off_csred_rounded = 'money_off_csred_rounded'; + static const String money_off_csred_sharp = 'money_off_csred_sharp'; + static const String money_off_outlined = 'money_off_outlined'; + static const String money_off_rounded = 'money_off_rounded'; + static const String money_off_sharp = 'money_off_sharp'; + static const String money_outlined = 'money_outlined'; + static const String money_rounded = 'money_rounded'; + static const String money_sharp = 'money_sharp'; + static const String monitor = 'monitor'; + static const String monitor_heart = 'monitor_heart'; + static const String monitor_heart_outlined = 'monitor_heart_outlined'; + static const String monitor_heart_rounded = 'monitor_heart_rounded'; + static const String monitor_heart_sharp = 'monitor_heart_sharp'; + static const String monitor_outlined = 'monitor_outlined'; + static const String monitor_rounded = 'monitor_rounded'; + static const String monitor_sharp = 'monitor_sharp'; + static const String monitor_weight = 'monitor_weight'; + static const String monitor_weight_outlined = 'monitor_weight_outlined'; + static const String monitor_weight_rounded = 'monitor_weight_rounded'; + static const String monitor_weight_sharp = 'monitor_weight_sharp'; + static const String monochrome_photos = 'monochrome_photos'; + static const String monochrome_photos_outlined = 'monochrome_photos_outlined'; + static const String monochrome_photos_rounded = 'monochrome_photos_rounded'; + static const String monochrome_photos_sharp = 'monochrome_photos_sharp'; + static const String mood = 'mood'; + static const String mood_bad = 'mood_bad'; + static const String mood_bad_outlined = 'mood_bad_outlined'; + static const String mood_bad_rounded = 'mood_bad_rounded'; + static const String mood_bad_sharp = 'mood_bad_sharp'; + static const String mood_outlined = 'mood_outlined'; + static const String mood_rounded = 'mood_rounded'; + static const String mood_sharp = 'mood_sharp'; + static const String moped = 'moped'; + static const String moped_outlined = 'moped_outlined'; + static const String moped_rounded = 'moped_rounded'; + static const String moped_sharp = 'moped_sharp'; + static const String more = 'more'; + static const String more_horiz = 'more_horiz'; + static const String more_horiz_outlined = 'more_horiz_outlined'; + static const String more_horiz_rounded = 'more_horiz_rounded'; + static const String more_horiz_sharp = 'more_horiz_sharp'; + static const String more_outlined = 'more_outlined'; + static const String more_rounded = 'more_rounded'; + static const String more_sharp = 'more_sharp'; + static const String more_time = 'more_time'; + static const String more_time_outlined = 'more_time_outlined'; + static const String more_time_rounded = 'more_time_rounded'; + static const String more_time_sharp = 'more_time_sharp'; + static const String more_vert = 'more_vert'; + static const String more_vert_outlined = 'more_vert_outlined'; + static const String more_vert_rounded = 'more_vert_rounded'; + static const String more_vert_sharp = 'more_vert_sharp'; + static const String mosque = 'mosque'; + static const String mosque_outlined = 'mosque_outlined'; + static const String mosque_rounded = 'mosque_rounded'; + static const String mosque_sharp = 'mosque_sharp'; + static const String motion_photos_auto = 'motion_photos_auto'; + static const String motion_photos_auto_outlined = + 'motion_photos_auto_outlined'; + static const String motion_photos_auto_rounded = 'motion_photos_auto_rounded'; + static const String motion_photos_auto_sharp = 'motion_photos_auto_sharp'; + static const String motion_photos_off = 'motion_photos_off'; + static const String motion_photos_off_outlined = 'motion_photos_off_outlined'; + static const String motion_photos_off_rounded = 'motion_photos_off_rounded'; + static const String motion_photos_off_sharp = 'motion_photos_off_sharp'; + static const String motion_photos_on = 'motion_photos_on'; + static const String motion_photos_on_outlined = 'motion_photos_on_outlined'; + static const String motion_photos_on_rounded = 'motion_photos_on_rounded'; + static const String motion_photos_on_sharp = 'motion_photos_on_sharp'; + static const String motion_photos_pause = 'motion_photos_pause'; + static const String motion_photos_pause_outlined = + 'motion_photos_pause_outlined'; + static const String motion_photos_pause_rounded = + 'motion_photos_pause_rounded'; + static const String motion_photos_pause_sharp = 'motion_photos_pause_sharp'; + static const String motion_photos_paused = 'motion_photos_paused'; + static const String motion_photos_paused_outlined = + 'motion_photos_paused_outlined'; + static const String motion_photos_paused_rounded = + 'motion_photos_paused_rounded'; + static const String motion_photos_paused_sharp = 'motion_photos_paused_sharp'; + static const String motorcycle = 'motorcycle'; + static const String motorcycle_outlined = 'motorcycle_outlined'; + static const String motorcycle_rounded = 'motorcycle_rounded'; + static const String motorcycle_sharp = 'motorcycle_sharp'; + static const String mouse = 'mouse'; + static const String mouse_outlined = 'mouse_outlined'; + static const String mouse_rounded = 'mouse_rounded'; + static const String mouse_sharp = 'mouse_sharp'; + static const String move_down = 'move_down'; + static const String move_down_outlined = 'move_down_outlined'; + static const String move_down_rounded = 'move_down_rounded'; + static const String move_down_sharp = 'move_down_sharp'; + static const String move_to_inbox = 'move_to_inbox'; + static const String move_to_inbox_outlined = 'move_to_inbox_outlined'; + static const String move_to_inbox_rounded = 'move_to_inbox_rounded'; + static const String move_to_inbox_sharp = 'move_to_inbox_sharp'; + static const String move_up = 'move_up'; + static const String move_up_outlined = 'move_up_outlined'; + static const String move_up_rounded = 'move_up_rounded'; + static const String move_up_sharp = 'move_up_sharp'; + static const String movie = 'movie'; + static const String movie_creation = 'movie_creation'; + static const String movie_creation_outlined = 'movie_creation_outlined'; + static const String movie_creation_rounded = 'movie_creation_rounded'; + static const String movie_creation_sharp = 'movie_creation_sharp'; + static const String movie_filter = 'movie_filter'; + static const String movie_filter_outlined = 'movie_filter_outlined'; + static const String movie_filter_rounded = 'movie_filter_rounded'; + static const String movie_filter_sharp = 'movie_filter_sharp'; + static const String movie_outlined = 'movie_outlined'; + static const String movie_rounded = 'movie_rounded'; + static const String movie_sharp = 'movie_sharp'; + static const String moving = 'moving'; + static const String moving_outlined = 'moving_outlined'; + static const String moving_rounded = 'moving_rounded'; + static const String moving_sharp = 'moving_sharp'; + static const String mp = 'mp'; + static const String mp_outlined = 'mp_outlined'; + static const String mp_rounded = 'mp_rounded'; + static const String mp_sharp = 'mp_sharp'; + static const String multiline_chart = 'multiline_chart'; + static const String multiline_chart_outlined = 'multiline_chart_outlined'; + static const String multiline_chart_rounded = 'multiline_chart_rounded'; + static const String multiline_chart_sharp = 'multiline_chart_sharp'; + static const String multiple_stop = 'multiple_stop'; + static const String multiple_stop_outlined = 'multiple_stop_outlined'; + static const String multiple_stop_rounded = 'multiple_stop_rounded'; + static const String multiple_stop_sharp = 'multiple_stop_sharp'; + static const String multitrack_audio = 'multitrack_audio'; + static const String multitrack_audio_outlined = 'multitrack_audio_outlined'; + static const String multitrack_audio_rounded = 'multitrack_audio_rounded'; + static const String multitrack_audio_sharp = 'multitrack_audio_sharp'; + static const String museum = 'museum'; + static const String museum_outlined = 'museum_outlined'; + static const String museum_rounded = 'museum_rounded'; + static const String museum_sharp = 'museum_sharp'; + static const String music_note = 'music_note'; + static const String music_note_outlined = 'music_note_outlined'; + static const String music_note_rounded = 'music_note_rounded'; + static const String music_note_sharp = 'music_note_sharp'; + static const String music_off = 'music_off'; + static const String music_off_outlined = 'music_off_outlined'; + static const String music_off_rounded = 'music_off_rounded'; + static const String music_off_sharp = 'music_off_sharp'; + static const String music_video = 'music_video'; + static const String music_video_outlined = 'music_video_outlined'; + static const String music_video_rounded = 'music_video_rounded'; + static const String music_video_sharp = 'music_video_sharp'; + static const String my_library_add = 'my_library_add'; + static const String my_library_add_outlined = 'my_library_add_outlined'; + static const String my_library_add_rounded = 'my_library_add_rounded'; + static const String my_library_add_sharp = 'my_library_add_sharp'; + static const String my_library_books = 'my_library_books'; + static const String my_library_books_outlined = 'my_library_books_outlined'; + static const String my_library_books_rounded = 'my_library_books_rounded'; + static const String my_library_books_sharp = 'my_library_books_sharp'; + static const String my_library_music = 'my_library_music'; + static const String my_library_music_outlined = 'my_library_music_outlined'; + static const String my_library_music_rounded = 'my_library_music_rounded'; + static const String my_library_music_sharp = 'my_library_music_sharp'; + static const String my_location = 'my_location'; + static const String my_location_outlined = 'my_location_outlined'; + static const String my_location_rounded = 'my_location_rounded'; + static const String my_location_sharp = 'my_location_sharp'; + static const String nat = 'nat'; + static const String nat_outlined = 'nat_outlined'; + static const String nat_rounded = 'nat_rounded'; + static const String nat_sharp = 'nat_sharp'; + static const String nature = 'nature'; + static const String nature_outlined = 'nature_outlined'; + static const String nature_people = 'nature_people'; + static const String nature_people_outlined = 'nature_people_outlined'; + static const String nature_people_rounded = 'nature_people_rounded'; + static const String nature_people_sharp = 'nature_people_sharp'; + static const String nature_rounded = 'nature_rounded'; + static const String nature_sharp = 'nature_sharp'; + static const String navigate_before = 'navigate_before'; + static const String navigate_before_outlined = 'navigate_before_outlined'; + static const String navigate_before_rounded = 'navigate_before_rounded'; + static const String navigate_before_sharp = 'navigate_before_sharp'; + static const String navigate_next = 'navigate_next'; + static const String navigate_next_outlined = 'navigate_next_outlined'; + static const String navigate_next_rounded = 'navigate_next_rounded'; + static const String navigate_next_sharp = 'navigate_next_sharp'; + static const String navigation = 'navigation'; + static const String navigation_outlined = 'navigation_outlined'; + static const String navigation_rounded = 'navigation_rounded'; + static const String navigation_sharp = 'navigation_sharp'; + static const String near_me = 'near_me'; + static const String near_me_disabled = 'near_me_disabled'; + static const String near_me_disabled_outlined = 'near_me_disabled_outlined'; + static const String near_me_disabled_rounded = 'near_me_disabled_rounded'; + static const String near_me_disabled_sharp = 'near_me_disabled_sharp'; + static const String near_me_outlined = 'near_me_outlined'; + static const String near_me_rounded = 'near_me_rounded'; + static const String near_me_sharp = 'near_me_sharp'; + static const String nearby_error = 'nearby_error'; + static const String nearby_error_outlined = 'nearby_error_outlined'; + static const String nearby_error_rounded = 'nearby_error_rounded'; + static const String nearby_error_sharp = 'nearby_error_sharp'; + static const String nearby_off = 'nearby_off'; + static const String nearby_off_outlined = 'nearby_off_outlined'; + static const String nearby_off_rounded = 'nearby_off_rounded'; + static const String nearby_off_sharp = 'nearby_off_sharp'; + static const String nest_cam_wired_stand = 'nest_cam_wired_stand'; + static const String nest_cam_wired_stand_outlined = + 'nest_cam_wired_stand_outlined'; + static const String nest_cam_wired_stand_rounded = + 'nest_cam_wired_stand_rounded'; + static const String nest_cam_wired_stand_sharp = 'nest_cam_wired_stand_sharp'; + static const String network_cell = 'network_cell'; + static const String network_cell_outlined = 'network_cell_outlined'; + static const String network_cell_rounded = 'network_cell_rounded'; + static const String network_cell_sharp = 'network_cell_sharp'; + static const String network_check = 'network_check'; + static const String network_check_outlined = 'network_check_outlined'; + static const String network_check_rounded = 'network_check_rounded'; + static const String network_check_sharp = 'network_check_sharp'; + static const String network_locked = 'network_locked'; + static const String network_locked_outlined = 'network_locked_outlined'; + static const String network_locked_rounded = 'network_locked_rounded'; + static const String network_locked_sharp = 'network_locked_sharp'; + static const String network_ping = 'network_ping'; + static const String network_ping_outlined = 'network_ping_outlined'; + static const String network_ping_rounded = 'network_ping_rounded'; + static const String network_ping_sharp = 'network_ping_sharp'; + static const String network_wifi = 'network_wifi'; + static const String network_wifi_1_bar = 'network_wifi_1_bar'; + static const String network_wifi_1_bar_outlined = + 'network_wifi_1_bar_outlined'; + static const String network_wifi_1_bar_rounded = 'network_wifi_1_bar_rounded'; + static const String network_wifi_1_bar_sharp = 'network_wifi_1_bar_sharp'; + static const String network_wifi_2_bar = 'network_wifi_2_bar'; + static const String network_wifi_2_bar_outlined = + 'network_wifi_2_bar_outlined'; + static const String network_wifi_2_bar_rounded = 'network_wifi_2_bar_rounded'; + static const String network_wifi_2_bar_sharp = 'network_wifi_2_bar_sharp'; + static const String network_wifi_3_bar = 'network_wifi_3_bar'; + static const String network_wifi_3_bar_outlined = + 'network_wifi_3_bar_outlined'; + static const String network_wifi_3_bar_rounded = 'network_wifi_3_bar_rounded'; + static const String network_wifi_3_bar_sharp = 'network_wifi_3_bar_sharp'; + static const String network_wifi_outlined = 'network_wifi_outlined'; + static const String network_wifi_rounded = 'network_wifi_rounded'; + static const String network_wifi_sharp = 'network_wifi_sharp'; + static const String new_label = 'new_label'; + static const String new_label_outlined = 'new_label_outlined'; + static const String new_label_rounded = 'new_label_rounded'; + static const String new_label_sharp = 'new_label_sharp'; + static const String new_releases = 'new_releases'; + static const String new_releases_outlined = 'new_releases_outlined'; + static const String new_releases_rounded = 'new_releases_rounded'; + static const String new_releases_sharp = 'new_releases_sharp'; + static const String newspaper = 'newspaper'; + static const String newspaper_outlined = 'newspaper_outlined'; + static const String newspaper_rounded = 'newspaper_rounded'; + static const String newspaper_sharp = 'newspaper_sharp'; + static const String next_plan = 'next_plan'; + static const String next_plan_outlined = 'next_plan_outlined'; + static const String next_plan_rounded = 'next_plan_rounded'; + static const String next_plan_sharp = 'next_plan_sharp'; + static const String next_week = 'next_week'; + static const String next_week_outlined = 'next_week_outlined'; + static const String next_week_rounded = 'next_week_rounded'; + static const String next_week_sharp = 'next_week_sharp'; + static const String nfc = 'nfc'; + static const String nfc_outlined = 'nfc_outlined'; + static const String nfc_rounded = 'nfc_rounded'; + static const String nfc_sharp = 'nfc_sharp'; + static const String night_shelter = 'night_shelter'; + static const String night_shelter_outlined = 'night_shelter_outlined'; + static const String night_shelter_rounded = 'night_shelter_rounded'; + static const String night_shelter_sharp = 'night_shelter_sharp'; + static const String nightlife = 'nightlife'; + static const String nightlife_outlined = 'nightlife_outlined'; + static const String nightlife_rounded = 'nightlife_rounded'; + static const String nightlife_sharp = 'nightlife_sharp'; + static const String nightlight = 'nightlight'; + static const String nightlight_outlined = 'nightlight_outlined'; + static const String nightlight_round = 'nightlight_round'; + static const String nightlight_round_outlined = 'nightlight_round_outlined'; + static const String nightlight_round_rounded = 'nightlight_round_rounded'; + static const String nightlight_round_sharp = 'nightlight_round_sharp'; + static const String nightlight_rounded = 'nightlight_rounded'; + static const String nightlight_sharp = 'nightlight_sharp'; + static const String nights_stay = 'nights_stay'; + static const String nights_stay_outlined = 'nights_stay_outlined'; + static const String nights_stay_rounded = 'nights_stay_rounded'; + static const String nights_stay_sharp = 'nights_stay_sharp'; + static const String nine_k = 'nine_k'; + static const String nine_k_outlined = 'nine_k_outlined'; + static const String nine_k_plus = 'nine_k_plus'; + static const String nine_k_plus_outlined = 'nine_k_plus_outlined'; + static const String nine_k_plus_rounded = 'nine_k_plus_rounded'; + static const String nine_k_plus_sharp = 'nine_k_plus_sharp'; + static const String nine_k_rounded = 'nine_k_rounded'; + static const String nine_k_sharp = 'nine_k_sharp'; + static const String nine_mp = 'nine_mp'; + static const String nine_mp_outlined = 'nine_mp_outlined'; + static const String nine_mp_rounded = 'nine_mp_rounded'; + static const String nine_mp_sharp = 'nine_mp_sharp'; + static const String nineteen_mp = 'nineteen_mp'; + static const String nineteen_mp_outlined = 'nineteen_mp_outlined'; + static const String nineteen_mp_rounded = 'nineteen_mp_rounded'; + static const String nineteen_mp_sharp = 'nineteen_mp_sharp'; + static const String no_accounts = 'no_accounts'; + static const String no_accounts_outlined = 'no_accounts_outlined'; + static const String no_accounts_rounded = 'no_accounts_rounded'; + static const String no_accounts_sharp = 'no_accounts_sharp'; + static const String no_adult_content = 'no_adult_content'; + static const String no_adult_content_outlined = 'no_adult_content_outlined'; + static const String no_adult_content_rounded = 'no_adult_content_rounded'; + static const String no_adult_content_sharp = 'no_adult_content_sharp'; + static const String no_backpack = 'no_backpack'; + static const String no_backpack_outlined = 'no_backpack_outlined'; + static const String no_backpack_rounded = 'no_backpack_rounded'; + static const String no_backpack_sharp = 'no_backpack_sharp'; + static const String no_cell = 'no_cell'; + static const String no_cell_outlined = 'no_cell_outlined'; + static const String no_cell_rounded = 'no_cell_rounded'; + static const String no_cell_sharp = 'no_cell_sharp'; + static const String no_crash = 'no_crash'; + static const String no_crash_outlined = 'no_crash_outlined'; + static const String no_crash_rounded = 'no_crash_rounded'; + static const String no_crash_sharp = 'no_crash_sharp'; + static const String no_drinks = 'no_drinks'; + static const String no_drinks_outlined = 'no_drinks_outlined'; + static const String no_drinks_rounded = 'no_drinks_rounded'; + static const String no_drinks_sharp = 'no_drinks_sharp'; + static const String no_encryption = 'no_encryption'; + static const String no_encryption_gmailerrorred = + 'no_encryption_gmailerrorred'; + static const String no_encryption_gmailerrorred_outlined = + 'no_encryption_gmailerrorred_outlined'; + static const String no_encryption_gmailerrorred_rounded = + 'no_encryption_gmailerrorred_rounded'; + static const String no_encryption_gmailerrorred_sharp = + 'no_encryption_gmailerrorred_sharp'; + static const String no_encryption_outlined = 'no_encryption_outlined'; + static const String no_encryption_rounded = 'no_encryption_rounded'; + static const String no_encryption_sharp = 'no_encryption_sharp'; + static const String no_flash = 'no_flash'; + static const String no_flash_outlined = 'no_flash_outlined'; + static const String no_flash_rounded = 'no_flash_rounded'; + static const String no_flash_sharp = 'no_flash_sharp'; + static const String no_food = 'no_food'; + static const String no_food_outlined = 'no_food_outlined'; + static const String no_food_rounded = 'no_food_rounded'; + static const String no_food_sharp = 'no_food_sharp'; + static const String no_luggage = 'no_luggage'; + static const String no_luggage_outlined = 'no_luggage_outlined'; + static const String no_luggage_rounded = 'no_luggage_rounded'; + static const String no_luggage_sharp = 'no_luggage_sharp'; + static const String no_meals = 'no_meals'; + static const String no_meals_ouline = 'no_meals_ouline'; + static const String no_meals_outlined = 'no_meals_outlined'; + static const String no_meals_rounded = 'no_meals_rounded'; + static const String no_meals_sharp = 'no_meals_sharp'; + static const String no_meeting_room = 'no_meeting_room'; + static const String no_meeting_room_outlined = 'no_meeting_room_outlined'; + static const String no_meeting_room_rounded = 'no_meeting_room_rounded'; + static const String no_meeting_room_sharp = 'no_meeting_room_sharp'; + static const String no_photography = 'no_photography'; + static const String no_photography_outlined = 'no_photography_outlined'; + static const String no_photography_rounded = 'no_photography_rounded'; + static const String no_photography_sharp = 'no_photography_sharp'; + static const String no_sim = 'no_sim'; + static const String no_sim_outlined = 'no_sim_outlined'; + static const String no_sim_rounded = 'no_sim_rounded'; + static const String no_sim_sharp = 'no_sim_sharp'; + static const String no_stroller = 'no_stroller'; + static const String no_stroller_outlined = 'no_stroller_outlined'; + static const String no_stroller_rounded = 'no_stroller_rounded'; + static const String no_stroller_sharp = 'no_stroller_sharp'; + static const String no_transfer = 'no_transfer'; + static const String no_transfer_outlined = 'no_transfer_outlined'; + static const String no_transfer_rounded = 'no_transfer_rounded'; + static const String no_transfer_sharp = 'no_transfer_sharp'; + static const String noise_aware = 'noise_aware'; + static const String noise_aware_outlined = 'noise_aware_outlined'; + static const String noise_aware_rounded = 'noise_aware_rounded'; + static const String noise_aware_sharp = 'noise_aware_sharp'; + static const String noise_control_off = 'noise_control_off'; + static const String noise_control_off_outlined = 'noise_control_off_outlined'; + static const String noise_control_off_rounded = 'noise_control_off_rounded'; + static const String noise_control_off_sharp = 'noise_control_off_sharp'; + static const String nordic_walking = 'nordic_walking'; + static const String nordic_walking_outlined = 'nordic_walking_outlined'; + static const String nordic_walking_rounded = 'nordic_walking_rounded'; + static const String nordic_walking_sharp = 'nordic_walking_sharp'; + static const String north = 'north'; + static const String north_east = 'north_east'; + static const String north_east_outlined = 'north_east_outlined'; + static const String north_east_rounded = 'north_east_rounded'; + static const String north_east_sharp = 'north_east_sharp'; + static const String north_outlined = 'north_outlined'; + static const String north_rounded = 'north_rounded'; + static const String north_sharp = 'north_sharp'; + static const String north_west = 'north_west'; + static const String north_west_outlined = 'north_west_outlined'; + static const String north_west_rounded = 'north_west_rounded'; + static const String north_west_sharp = 'north_west_sharp'; + static const String not_accessible = 'not_accessible'; + static const String not_accessible_outlined = 'not_accessible_outlined'; + static const String not_accessible_rounded = 'not_accessible_rounded'; + static const String not_accessible_sharp = 'not_accessible_sharp'; + static const String not_interested = 'not_interested'; + static const String not_interested_outlined = 'not_interested_outlined'; + static const String not_interested_rounded = 'not_interested_rounded'; + static const String not_interested_sharp = 'not_interested_sharp'; + static const String not_listed_location = 'not_listed_location'; + static const String not_listed_location_outlined = + 'not_listed_location_outlined'; + static const String not_listed_location_rounded = + 'not_listed_location_rounded'; + static const String not_listed_location_sharp = 'not_listed_location_sharp'; + static const String not_started = 'not_started'; + static const String not_started_outlined = 'not_started_outlined'; + static const String not_started_rounded = 'not_started_rounded'; + static const String not_started_sharp = 'not_started_sharp'; + static const String note = 'note'; + static const String note_add = 'note_add'; + static const String note_add_outlined = 'note_add_outlined'; + static const String note_add_rounded = 'note_add_rounded'; + static const String note_add_sharp = 'note_add_sharp'; + static const String note_alt = 'note_alt'; + static const String note_alt_outlined = 'note_alt_outlined'; + static const String note_alt_rounded = 'note_alt_rounded'; + static const String note_alt_sharp = 'note_alt_sharp'; + static const String note_outlined = 'note_outlined'; + static const String note_rounded = 'note_rounded'; + static const String note_sharp = 'note_sharp'; + static const String notes = 'notes'; + static const String notes_outlined = 'notes_outlined'; + static const String notes_rounded = 'notes_rounded'; + static const String notes_sharp = 'notes_sharp'; + static const String notification_add = 'notification_add'; + static const String notification_add_outlined = 'notification_add_outlined'; + static const String notification_add_rounded = 'notification_add_rounded'; + static const String notification_add_sharp = 'notification_add_sharp'; + static const String notification_important = 'notification_important'; + static const String notification_important_outlined = + 'notification_important_outlined'; + static const String notification_important_rounded = + 'notification_important_rounded'; + static const String notification_important_sharp = + 'notification_important_sharp'; + static const String notifications = 'notifications'; + static const String notifications_active = 'notifications_active'; + static const String notifications_active_outlined = + 'notifications_active_outlined'; + static const String notifications_active_rounded = + 'notifications_active_rounded'; + static const String notifications_active_sharp = 'notifications_active_sharp'; + static const String notifications_none = 'notifications_none'; + static const String notifications_none_outlined = + 'notifications_none_outlined'; + static const String notifications_none_rounded = 'notifications_none_rounded'; + static const String notifications_none_sharp = 'notifications_none_sharp'; + static const String notifications_off = 'notifications_off'; + static const String notifications_off_outlined = 'notifications_off_outlined'; + static const String notifications_off_rounded = 'notifications_off_rounded'; + static const String notifications_off_sharp = 'notifications_off_sharp'; + static const String notifications_on = 'notifications_on'; + static const String notifications_on_outlined = 'notifications_on_outlined'; + static const String notifications_on_rounded = 'notifications_on_rounded'; + static const String notifications_on_sharp = 'notifications_on_sharp'; + static const String notifications_outlined = 'notifications_outlined'; + static const String notifications_paused = 'notifications_paused'; + static const String notifications_paused_outlined = + 'notifications_paused_outlined'; + static const String notifications_paused_rounded = + 'notifications_paused_rounded'; + static const String notifications_paused_sharp = 'notifications_paused_sharp'; + static const String notifications_rounded = 'notifications_rounded'; + static const String notifications_sharp = 'notifications_sharp'; + static const String now_wallpaper = 'now_wallpaper'; + static const String now_wallpaper_outlined = 'now_wallpaper_outlined'; + static const String now_wallpaper_rounded = 'now_wallpaper_rounded'; + static const String now_wallpaper_sharp = 'now_wallpaper_sharp'; + static const String now_widgets = 'now_widgets'; + static const String now_widgets_outlined = 'now_widgets_outlined'; + static const String now_widgets_rounded = 'now_widgets_rounded'; + static const String now_widgets_sharp = 'now_widgets_sharp'; + static const String numbers = 'numbers'; + static const String numbers_outlined = 'numbers_outlined'; + static const String numbers_rounded = 'numbers_rounded'; + static const String numbers_sharp = 'numbers_sharp'; + static const String offline_bolt = 'offline_bolt'; + static const String offline_bolt_outlined = 'offline_bolt_outlined'; + static const String offline_bolt_rounded = 'offline_bolt_rounded'; + static const String offline_bolt_sharp = 'offline_bolt_sharp'; + static const String offline_pin = 'offline_pin'; + static const String offline_pin_outlined = 'offline_pin_outlined'; + static const String offline_pin_rounded = 'offline_pin_rounded'; + static const String offline_pin_sharp = 'offline_pin_sharp'; + static const String offline_share = 'offline_share'; + static const String offline_share_outlined = 'offline_share_outlined'; + static const String offline_share_rounded = 'offline_share_rounded'; + static const String offline_share_sharp = 'offline_share_sharp'; + static const String oil_barrel = 'oil_barrel'; + static const String oil_barrel_outlined = 'oil_barrel_outlined'; + static const String oil_barrel_rounded = 'oil_barrel_rounded'; + static const String oil_barrel_sharp = 'oil_barrel_sharp'; + static const String on_device_training = 'on_device_training'; + static const String on_device_training_outlined = + 'on_device_training_outlined'; + static const String on_device_training_rounded = 'on_device_training_rounded'; + static const String on_device_training_sharp = 'on_device_training_sharp'; + static const String ondemand_video = 'ondemand_video'; + static const String ondemand_video_outlined = 'ondemand_video_outlined'; + static const String ondemand_video_rounded = 'ondemand_video_rounded'; + static const String ondemand_video_sharp = 'ondemand_video_sharp'; + static const String one_k = 'one_k'; + static const String one_k_outlined = 'one_k_outlined'; + static const String one_k_plus = 'one_k_plus'; + static const String one_k_plus_outlined = 'one_k_plus_outlined'; + static const String one_k_plus_rounded = 'one_k_plus_rounded'; + static const String one_k_plus_sharp = 'one_k_plus_sharp'; + static const String one_k_rounded = 'one_k_rounded'; + static const String one_k_sharp = 'one_k_sharp'; + static const String one_x_mobiledata = 'one_x_mobiledata'; + static const String one_x_mobiledata_outlined = 'one_x_mobiledata_outlined'; + static const String one_x_mobiledata_rounded = 'one_x_mobiledata_rounded'; + static const String one_x_mobiledata_sharp = 'one_x_mobiledata_sharp'; + static const String onetwothree = 'onetwothree'; + static const String onetwothree_outlined = 'onetwothree_outlined'; + static const String onetwothree_rounded = 'onetwothree_rounded'; + static const String onetwothree_sharp = 'onetwothree_sharp'; + static const String online_prediction = 'online_prediction'; + static const String online_prediction_outlined = 'online_prediction_outlined'; + static const String online_prediction_rounded = 'online_prediction_rounded'; + static const String online_prediction_sharp = 'online_prediction_sharp'; + static const String opacity = 'opacity'; + static const String opacity_outlined = 'opacity_outlined'; + static const String opacity_rounded = 'opacity_rounded'; + static const String opacity_sharp = 'opacity_sharp'; + static const String open_in_browser = 'open_in_browser'; + static const String open_in_browser_outlined = 'open_in_browser_outlined'; + static const String open_in_browser_rounded = 'open_in_browser_rounded'; + static const String open_in_browser_sharp = 'open_in_browser_sharp'; + static const String open_in_full = 'open_in_full'; + static const String open_in_full_outlined = 'open_in_full_outlined'; + static const String open_in_full_rounded = 'open_in_full_rounded'; + static const String open_in_full_sharp = 'open_in_full_sharp'; + static const String open_in_new = 'open_in_new'; + static const String open_in_new_off = 'open_in_new_off'; + static const String open_in_new_off_outlined = 'open_in_new_off_outlined'; + static const String open_in_new_off_rounded = 'open_in_new_off_rounded'; + static const String open_in_new_off_sharp = 'open_in_new_off_sharp'; + static const String open_in_new_outlined = 'open_in_new_outlined'; + static const String open_in_new_rounded = 'open_in_new_rounded'; + static const String open_in_new_sharp = 'open_in_new_sharp'; + static const String open_with = 'open_with'; + static const String open_with_outlined = 'open_with_outlined'; + static const String open_with_rounded = 'open_with_rounded'; + static const String open_with_sharp = 'open_with_sharp'; + static const String other_houses = 'other_houses'; + static const String other_houses_outlined = 'other_houses_outlined'; + static const String other_houses_rounded = 'other_houses_rounded'; + static const String other_houses_sharp = 'other_houses_sharp'; + static const String outbond = 'outbond'; + static const String outbond_outlined = 'outbond_outlined'; + static const String outbond_rounded = 'outbond_rounded'; + static const String outbond_sharp = 'outbond_sharp'; + static const String outbound = 'outbound'; + static const String outbound_outlined = 'outbound_outlined'; + static const String outbound_rounded = 'outbound_rounded'; + static const String outbound_sharp = 'outbound_sharp'; + static const String outbox = 'outbox'; + static const String outbox_outlined = 'outbox_outlined'; + static const String outbox_rounded = 'outbox_rounded'; + static const String outbox_sharp = 'outbox_sharp'; + static const String outdoor_grill = 'outdoor_grill'; + static const String outdoor_grill_outlined = 'outdoor_grill_outlined'; + static const String outdoor_grill_rounded = 'outdoor_grill_rounded'; + static const String outdoor_grill_sharp = 'outdoor_grill_sharp'; + static const String outgoing_mail = 'outgoing_mail'; + static const String outlet = 'outlet'; + static const String outlet_outlined = 'outlet_outlined'; + static const String outlet_rounded = 'outlet_rounded'; + static const String outlet_sharp = 'outlet_sharp'; + static const String outlined_flag = 'outlined_flag'; + static const String outlined_flag_outlined = 'outlined_flag_outlined'; + static const String outlined_flag_rounded = 'outlined_flag_rounded'; + static const String outlined_flag_sharp = 'outlined_flag_sharp'; + static const String output = 'output'; + static const String output_outlined = 'output_outlined'; + static const String output_rounded = 'output_rounded'; + static const String output_sharp = 'output_sharp'; + static const String padding = 'padding'; + static const String padding_outlined = 'padding_outlined'; + static const String padding_rounded = 'padding_rounded'; + static const String padding_sharp = 'padding_sharp'; + static const String pages = 'pages'; + static const String pages_outlined = 'pages_outlined'; + static const String pages_rounded = 'pages_rounded'; + static const String pages_sharp = 'pages_sharp'; + static const String pageview = 'pageview'; + static const String pageview_outlined = 'pageview_outlined'; + static const String pageview_rounded = 'pageview_rounded'; + static const String pageview_sharp = 'pageview_sharp'; + static const String paid = 'paid'; + static const String paid_outlined = 'paid_outlined'; + static const String paid_rounded = 'paid_rounded'; + static const String paid_sharp = 'paid_sharp'; + static const String palette = 'palette'; + static const String palette_outlined = 'palette_outlined'; + static const String palette_rounded = 'palette_rounded'; + static const String palette_sharp = 'palette_sharp'; + static const String pan_tool = 'pan_tool'; + static const String pan_tool_alt = 'pan_tool_alt'; + static const String pan_tool_alt_outlined = 'pan_tool_alt_outlined'; + static const String pan_tool_alt_rounded = 'pan_tool_alt_rounded'; + static const String pan_tool_alt_sharp = 'pan_tool_alt_sharp'; + static const String pan_tool_outlined = 'pan_tool_outlined'; + static const String pan_tool_rounded = 'pan_tool_rounded'; + static const String pan_tool_sharp = 'pan_tool_sharp'; + static const String panorama = 'panorama'; + static const String panorama_fish_eye = 'panorama_fish_eye'; + static const String panorama_fish_eye_outlined = 'panorama_fish_eye_outlined'; + static const String panorama_fish_eye_rounded = 'panorama_fish_eye_rounded'; + static const String panorama_fish_eye_sharp = 'panorama_fish_eye_sharp'; + static const String panorama_fisheye = 'panorama_fisheye'; + static const String panorama_fisheye_outlined = 'panorama_fisheye_outlined'; + static const String panorama_fisheye_rounded = 'panorama_fisheye_rounded'; + static const String panorama_fisheye_sharp = 'panorama_fisheye_sharp'; + static const String panorama_horizontal = 'panorama_horizontal'; + static const String panorama_horizontal_outlined = + 'panorama_horizontal_outlined'; + static const String panorama_horizontal_rounded = + 'panorama_horizontal_rounded'; + static const String panorama_horizontal_select = 'panorama_horizontal_select'; + static const String panorama_horizontal_select_outlined = + 'panorama_horizontal_select_outlined'; + static const String panorama_horizontal_select_rounded = + 'panorama_horizontal_select_rounded'; + static const String panorama_horizontal_select_sharp = + 'panorama_horizontal_select_sharp'; + static const String panorama_horizontal_sharp = 'panorama_horizontal_sharp'; + static const String panorama_outlined = 'panorama_outlined'; + static const String panorama_photosphere = 'panorama_photosphere'; + static const String panorama_photosphere_outlined = + 'panorama_photosphere_outlined'; + static const String panorama_photosphere_rounded = + 'panorama_photosphere_rounded'; + static const String panorama_photosphere_select = + 'panorama_photosphere_select'; + static const String panorama_photosphere_select_outlined = + 'panorama_photosphere_select_outlined'; + static const String panorama_photosphere_select_rounded = + 'panorama_photosphere_select_rounded'; + static const String panorama_photosphere_select_sharp = + 'panorama_photosphere_select_sharp'; + static const String panorama_photosphere_sharp = 'panorama_photosphere_sharp'; + static const String panorama_rounded = 'panorama_rounded'; + static const String panorama_sharp = 'panorama_sharp'; + static const String panorama_vertical = 'panorama_vertical'; + static const String panorama_vertical_outlined = 'panorama_vertical_outlined'; + static const String panorama_vertical_rounded = 'panorama_vertical_rounded'; + static const String panorama_vertical_select = 'panorama_vertical_select'; + static const String panorama_vertical_select_outlined = + 'panorama_vertical_select_outlined'; + static const String panorama_vertical_select_rounded = + 'panorama_vertical_select_rounded'; + static const String panorama_vertical_select_sharp = + 'panorama_vertical_select_sharp'; + static const String panorama_vertical_sharp = 'panorama_vertical_sharp'; + static const String panorama_wide_angle = 'panorama_wide_angle'; + static const String panorama_wide_angle_outlined = + 'panorama_wide_angle_outlined'; + static const String panorama_wide_angle_rounded = + 'panorama_wide_angle_rounded'; + static const String panorama_wide_angle_select = 'panorama_wide_angle_select'; + static const String panorama_wide_angle_select_outlined = + 'panorama_wide_angle_select_outlined'; + static const String panorama_wide_angle_select_rounded = + 'panorama_wide_angle_select_rounded'; + static const String panorama_wide_angle_select_sharp = + 'panorama_wide_angle_select_sharp'; + static const String panorama_wide_angle_sharp = 'panorama_wide_angle_sharp'; + static const String paragliding = 'paragliding'; + static const String paragliding_outlined = 'paragliding_outlined'; + static const String paragliding_rounded = 'paragliding_rounded'; + static const String paragliding_sharp = 'paragliding_sharp'; + static const String park = 'park'; + static const String park_outlined = 'park_outlined'; + static const String park_rounded = 'park_rounded'; + static const String park_sharp = 'park_sharp'; + static const String party_mode = 'party_mode'; + static const String party_mode_outlined = 'party_mode_outlined'; + static const String party_mode_rounded = 'party_mode_rounded'; + static const String party_mode_sharp = 'party_mode_sharp'; + static const String password = 'password'; + static const String password_outlined = 'password_outlined'; + static const String password_rounded = 'password_rounded'; + static const String password_sharp = 'password_sharp'; + static const String paste = 'paste'; + static const String paste_outlined = 'paste_outlined'; + static const String paste_rounded = 'paste_rounded'; + static const String paste_sharp = 'paste_sharp'; + static const String pattern = 'pattern'; + static const String pattern_outlined = 'pattern_outlined'; + static const String pattern_rounded = 'pattern_rounded'; + static const String pattern_sharp = 'pattern_sharp'; + static const String pause = 'pause'; + static const String pause_circle = 'pause_circle'; + static const String pause_circle_filled = 'pause_circle_filled'; + static const String pause_circle_filled_outlined = + 'pause_circle_filled_outlined'; + static const String pause_circle_filled_rounded = + 'pause_circle_filled_rounded'; + static const String pause_circle_filled_sharp = 'pause_circle_filled_sharp'; + static const String pause_circle_outline = 'pause_circle_outline'; + static const String pause_circle_outline_outlined = + 'pause_circle_outline_outlined'; + static const String pause_circle_outline_rounded = + 'pause_circle_outline_rounded'; + static const String pause_circle_outline_sharp = 'pause_circle_outline_sharp'; + static const String pause_circle_outlined = 'pause_circle_outlined'; + static const String pause_circle_rounded = 'pause_circle_rounded'; + static const String pause_circle_sharp = 'pause_circle_sharp'; + static const String pause_outlined = 'pause_outlined'; + static const String pause_presentation = 'pause_presentation'; + static const String pause_presentation_outlined = + 'pause_presentation_outlined'; + static const String pause_presentation_rounded = 'pause_presentation_rounded'; + static const String pause_presentation_sharp = 'pause_presentation_sharp'; + static const String pause_rounded = 'pause_rounded'; + static const String pause_sharp = 'pause_sharp'; + static const String payment = 'payment'; + static const String payment_outlined = 'payment_outlined'; + static const String payment_rounded = 'payment_rounded'; + static const String payment_sharp = 'payment_sharp'; + static const String payments = 'payments'; + static const String payments_outlined = 'payments_outlined'; + static const String payments_rounded = 'payments_rounded'; + static const String payments_sharp = 'payments_sharp'; + static const String paypal = 'paypal'; + static const String paypal_outlined = 'paypal_outlined'; + static const String paypal_rounded = 'paypal_rounded'; + static const String paypal_sharp = 'paypal_sharp'; + static const String pedal_bike = 'pedal_bike'; + static const String pedal_bike_outlined = 'pedal_bike_outlined'; + static const String pedal_bike_rounded = 'pedal_bike_rounded'; + static const String pedal_bike_sharp = 'pedal_bike_sharp'; + static const String pending = 'pending'; + static const String pending_actions = 'pending_actions'; + static const String pending_actions_outlined = 'pending_actions_outlined'; + static const String pending_actions_rounded = 'pending_actions_rounded'; + static const String pending_actions_sharp = 'pending_actions_sharp'; + static const String pending_outlined = 'pending_outlined'; + static const String pending_rounded = 'pending_rounded'; + static const String pending_sharp = 'pending_sharp'; + static const String pentagon = 'pentagon'; + static const String pentagon_outlined = 'pentagon_outlined'; + static const String pentagon_rounded = 'pentagon_rounded'; + static const String pentagon_sharp = 'pentagon_sharp'; + static const String people = 'people'; + static const String people_alt = 'people_alt'; + static const String people_alt_outlined = 'people_alt_outlined'; + static const String people_alt_rounded = 'people_alt_rounded'; + static const String people_alt_sharp = 'people_alt_sharp'; + static const String people_outline = 'people_outline'; + static const String people_outline_outlined = 'people_outline_outlined'; + static const String people_outline_rounded = 'people_outline_rounded'; + static const String people_outline_sharp = 'people_outline_sharp'; + static const String people_outlined = 'people_outlined'; + static const String people_rounded = 'people_rounded'; + static const String people_sharp = 'people_sharp'; + static const String percent = 'percent'; + static const String percent_outlined = 'percent_outlined'; + static const String percent_rounded = 'percent_rounded'; + static const String percent_sharp = 'percent_sharp'; + static const String perm_camera_mic = 'perm_camera_mic'; + static const String perm_camera_mic_outlined = 'perm_camera_mic_outlined'; + static const String perm_camera_mic_rounded = 'perm_camera_mic_rounded'; + static const String perm_camera_mic_sharp = 'perm_camera_mic_sharp'; + static const String perm_contact_cal = 'perm_contact_cal'; + static const String perm_contact_cal_outlined = 'perm_contact_cal_outlined'; + static const String perm_contact_cal_rounded = 'perm_contact_cal_rounded'; + static const String perm_contact_cal_sharp = 'perm_contact_cal_sharp'; + static const String perm_contact_calendar = 'perm_contact_calendar'; + static const String perm_contact_calendar_outlined = + 'perm_contact_calendar_outlined'; + static const String perm_contact_calendar_rounded = + 'perm_contact_calendar_rounded'; + static const String perm_contact_calendar_sharp = + 'perm_contact_calendar_sharp'; + static const String perm_data_setting = 'perm_data_setting'; + static const String perm_data_setting_outlined = 'perm_data_setting_outlined'; + static const String perm_data_setting_rounded = 'perm_data_setting_rounded'; + static const String perm_data_setting_sharp = 'perm_data_setting_sharp'; + static const String perm_device_info = 'perm_device_info'; + static const String perm_device_info_outlined = 'perm_device_info_outlined'; + static const String perm_device_info_rounded = 'perm_device_info_rounded'; + static const String perm_device_info_sharp = 'perm_device_info_sharp'; + static const String perm_device_information = 'perm_device_information'; + static const String perm_device_information_outlined = + 'perm_device_information_outlined'; + static const String perm_device_information_rounded = + 'perm_device_information_rounded'; + static const String perm_device_information_sharp = + 'perm_device_information_sharp'; + static const String perm_identity = 'perm_identity'; + static const String perm_identity_outlined = 'perm_identity_outlined'; + static const String perm_identity_rounded = 'perm_identity_rounded'; + static const String perm_identity_sharp = 'perm_identity_sharp'; + static const String perm_media = 'perm_media'; + static const String perm_media_outlined = 'perm_media_outlined'; + static const String perm_media_rounded = 'perm_media_rounded'; + static const String perm_media_sharp = 'perm_media_sharp'; + static const String perm_phone_msg = 'perm_phone_msg'; + static const String perm_phone_msg_outlined = 'perm_phone_msg_outlined'; + static const String perm_phone_msg_rounded = 'perm_phone_msg_rounded'; + static const String perm_phone_msg_sharp = 'perm_phone_msg_sharp'; + static const String perm_scan_wifi = 'perm_scan_wifi'; + static const String perm_scan_wifi_outlined = 'perm_scan_wifi_outlined'; + static const String perm_scan_wifi_rounded = 'perm_scan_wifi_rounded'; + static const String perm_scan_wifi_sharp = 'perm_scan_wifi_sharp'; + static const String person = 'person'; + static const String person_add = 'person_add'; + static const String person_add_alt = 'person_add_alt'; + static const String person_add_alt_1 = 'person_add_alt_1'; + static const String person_add_alt_1_outlined = 'person_add_alt_1_outlined'; + static const String person_add_alt_1_rounded = 'person_add_alt_1_rounded'; + static const String person_add_alt_1_sharp = 'person_add_alt_1_sharp'; + static const String person_add_alt_outlined = 'person_add_alt_outlined'; + static const String person_add_alt_rounded = 'person_add_alt_rounded'; + static const String person_add_alt_sharp = 'person_add_alt_sharp'; + static const String person_add_disabled = 'person_add_disabled'; + static const String person_add_disabled_outlined = + 'person_add_disabled_outlined'; + static const String person_add_disabled_rounded = + 'person_add_disabled_rounded'; + static const String person_add_disabled_sharp = 'person_add_disabled_sharp'; + static const String person_add_outlined = 'person_add_outlined'; + static const String person_add_rounded = 'person_add_rounded'; + static const String person_add_sharp = 'person_add_sharp'; + static const String person_off = 'person_off'; + static const String person_off_outlined = 'person_off_outlined'; + static const String person_off_rounded = 'person_off_rounded'; + static const String person_off_sharp = 'person_off_sharp'; + static const String person_outline = 'person_outline'; + static const String person_outline_outlined = 'person_outline_outlined'; + static const String person_outline_rounded = 'person_outline_rounded'; + static const String person_outline_sharp = 'person_outline_sharp'; + static const String person_outlined = 'person_outlined'; + static const String person_pin = 'person_pin'; + static const String person_pin_circle = 'person_pin_circle'; + static const String person_pin_circle_outlined = 'person_pin_circle_outlined'; + static const String person_pin_circle_rounded = 'person_pin_circle_rounded'; + static const String person_pin_circle_sharp = 'person_pin_circle_sharp'; + static const String person_pin_outlined = 'person_pin_outlined'; + static const String person_pin_rounded = 'person_pin_rounded'; + static const String person_pin_sharp = 'person_pin_sharp'; + static const String person_remove = 'person_remove'; + static const String person_remove_alt_1 = 'person_remove_alt_1'; + static const String person_remove_alt_1_outlined = + 'person_remove_alt_1_outlined'; + static const String person_remove_alt_1_rounded = + 'person_remove_alt_1_rounded'; + static const String person_remove_alt_1_sharp = 'person_remove_alt_1_sharp'; + static const String person_remove_outlined = 'person_remove_outlined'; + static const String person_remove_rounded = 'person_remove_rounded'; + static const String person_remove_sharp = 'person_remove_sharp'; + static const String person_rounded = 'person_rounded'; + static const String person_search = 'person_search'; + static const String person_search_outlined = 'person_search_outlined'; + static const String person_search_rounded = 'person_search_rounded'; + static const String person_search_sharp = 'person_search_sharp'; + static const String person_sharp = 'person_sharp'; + static const String personal_injury = 'personal_injury'; + static const String personal_injury_outlined = 'personal_injury_outlined'; + static const String personal_injury_rounded = 'personal_injury_rounded'; + static const String personal_injury_sharp = 'personal_injury_sharp'; + static const String personal_video = 'personal_video'; + static const String personal_video_outlined = 'personal_video_outlined'; + static const String personal_video_rounded = 'personal_video_rounded'; + static const String personal_video_sharp = 'personal_video_sharp'; + static const String pest_control = 'pest_control'; + static const String pest_control_outlined = 'pest_control_outlined'; + static const String pest_control_rodent = 'pest_control_rodent'; + static const String pest_control_rodent_outlined = + 'pest_control_rodent_outlined'; + static const String pest_control_rodent_rounded = + 'pest_control_rodent_rounded'; + static const String pest_control_rodent_sharp = 'pest_control_rodent_sharp'; + static const String pest_control_rounded = 'pest_control_rounded'; + static const String pest_control_sharp = 'pest_control_sharp'; + static const String pets = 'pets'; + static const String pets_outlined = 'pets_outlined'; + static const String pets_rounded = 'pets_rounded'; + static const String pets_sharp = 'pets_sharp'; + static const String phishing = 'phishing'; + static const String phishing_outlined = 'phishing_outlined'; + static const String phishing_rounded = 'phishing_rounded'; + static const String phishing_sharp = 'phishing_sharp'; + static const String phone = 'phone'; + static const String phone_android = 'phone_android'; + static const String phone_android_outlined = 'phone_android_outlined'; + static const String phone_android_rounded = 'phone_android_rounded'; + static const String phone_android_sharp = 'phone_android_sharp'; + static const String phone_bluetooth_speaker = 'phone_bluetooth_speaker'; + static const String phone_bluetooth_speaker_outlined = + 'phone_bluetooth_speaker_outlined'; + static const String phone_bluetooth_speaker_rounded = + 'phone_bluetooth_speaker_rounded'; + static const String phone_bluetooth_speaker_sharp = + 'phone_bluetooth_speaker_sharp'; + static const String phone_callback = 'phone_callback'; + static const String phone_callback_outlined = 'phone_callback_outlined'; + static const String phone_callback_rounded = 'phone_callback_rounded'; + static const String phone_callback_sharp = 'phone_callback_sharp'; + static const String phone_disabled = 'phone_disabled'; + static const String phone_disabled_outlined = 'phone_disabled_outlined'; + static const String phone_disabled_rounded = 'phone_disabled_rounded'; + static const String phone_disabled_sharp = 'phone_disabled_sharp'; + static const String phone_enabled = 'phone_enabled'; + static const String phone_enabled_outlined = 'phone_enabled_outlined'; + static const String phone_enabled_rounded = 'phone_enabled_rounded'; + static const String phone_enabled_sharp = 'phone_enabled_sharp'; + static const String phone_forwarded = 'phone_forwarded'; + static const String phone_forwarded_outlined = 'phone_forwarded_outlined'; + static const String phone_forwarded_rounded = 'phone_forwarded_rounded'; + static const String phone_forwarded_sharp = 'phone_forwarded_sharp'; + static const String phone_in_talk = 'phone_in_talk'; + static const String phone_in_talk_outlined = 'phone_in_talk_outlined'; + static const String phone_in_talk_rounded = 'phone_in_talk_rounded'; + static const String phone_in_talk_sharp = 'phone_in_talk_sharp'; + static const String phone_iphone = 'phone_iphone'; + static const String phone_iphone_outlined = 'phone_iphone_outlined'; + static const String phone_iphone_rounded = 'phone_iphone_rounded'; + static const String phone_iphone_sharp = 'phone_iphone_sharp'; + static const String phone_locked = 'phone_locked'; + static const String phone_locked_outlined = 'phone_locked_outlined'; + static const String phone_locked_rounded = 'phone_locked_rounded'; + static const String phone_locked_sharp = 'phone_locked_sharp'; + static const String phone_missed = 'phone_missed'; + static const String phone_missed_outlined = 'phone_missed_outlined'; + static const String phone_missed_rounded = 'phone_missed_rounded'; + static const String phone_missed_sharp = 'phone_missed_sharp'; + static const String phone_outlined = 'phone_outlined'; + static const String phone_paused = 'phone_paused'; + static const String phone_paused_outlined = 'phone_paused_outlined'; + static const String phone_paused_rounded = 'phone_paused_rounded'; + static const String phone_paused_sharp = 'phone_paused_sharp'; + static const String phone_rounded = 'phone_rounded'; + static const String phone_sharp = 'phone_sharp'; + static const String phonelink = 'phonelink'; + static const String phonelink_erase = 'phonelink_erase'; + static const String phonelink_erase_outlined = 'phonelink_erase_outlined'; + static const String phonelink_erase_rounded = 'phonelink_erase_rounded'; + static const String phonelink_erase_sharp = 'phonelink_erase_sharp'; + static const String phonelink_lock = 'phonelink_lock'; + static const String phonelink_lock_outlined = 'phonelink_lock_outlined'; + static const String phonelink_lock_rounded = 'phonelink_lock_rounded'; + static const String phonelink_lock_sharp = 'phonelink_lock_sharp'; + static const String phonelink_off = 'phonelink_off'; + static const String phonelink_off_outlined = 'phonelink_off_outlined'; + static const String phonelink_off_rounded = 'phonelink_off_rounded'; + static const String phonelink_off_sharp = 'phonelink_off_sharp'; + static const String phonelink_outlined = 'phonelink_outlined'; + static const String phonelink_ring = 'phonelink_ring'; + static const String phonelink_ring_outlined = 'phonelink_ring_outlined'; + static const String phonelink_ring_rounded = 'phonelink_ring_rounded'; + static const String phonelink_ring_sharp = 'phonelink_ring_sharp'; + static const String phonelink_rounded = 'phonelink_rounded'; + static const String phonelink_setup = 'phonelink_setup'; + static const String phonelink_setup_outlined = 'phonelink_setup_outlined'; + static const String phonelink_setup_rounded = 'phonelink_setup_rounded'; + static const String phonelink_setup_sharp = 'phonelink_setup_sharp'; + static const String phonelink_sharp = 'phonelink_sharp'; + static const String photo = 'photo'; + static const String photo_album = 'photo_album'; + static const String photo_album_outlined = 'photo_album_outlined'; + static const String photo_album_rounded = 'photo_album_rounded'; + static const String photo_album_sharp = 'photo_album_sharp'; + static const String photo_camera = 'photo_camera'; + static const String photo_camera_back = 'photo_camera_back'; + static const String photo_camera_back_outlined = 'photo_camera_back_outlined'; + static const String photo_camera_back_rounded = 'photo_camera_back_rounded'; + static const String photo_camera_back_sharp = 'photo_camera_back_sharp'; + static const String photo_camera_front = 'photo_camera_front'; + static const String photo_camera_front_outlined = + 'photo_camera_front_outlined'; + static const String photo_camera_front_rounded = 'photo_camera_front_rounded'; + static const String photo_camera_front_sharp = 'photo_camera_front_sharp'; + static const String photo_camera_outlined = 'photo_camera_outlined'; + static const String photo_camera_rounded = 'photo_camera_rounded'; + static const String photo_camera_sharp = 'photo_camera_sharp'; + static const String photo_filter = 'photo_filter'; + static const String photo_filter_outlined = 'photo_filter_outlined'; + static const String photo_filter_rounded = 'photo_filter_rounded'; + static const String photo_filter_sharp = 'photo_filter_sharp'; + static const String photo_library = 'photo_library'; + static const String photo_library_outlined = 'photo_library_outlined'; + static const String photo_library_rounded = 'photo_library_rounded'; + static const String photo_library_sharp = 'photo_library_sharp'; + static const String photo_outlined = 'photo_outlined'; + static const String photo_rounded = 'photo_rounded'; + static const String photo_sharp = 'photo_sharp'; + static const String photo_size_select_actual = 'photo_size_select_actual'; + static const String photo_size_select_actual_outlined = + 'photo_size_select_actual_outlined'; + static const String photo_size_select_actual_rounded = + 'photo_size_select_actual_rounded'; + static const String photo_size_select_actual_sharp = + 'photo_size_select_actual_sharp'; + static const String photo_size_select_large = 'photo_size_select_large'; + static const String photo_size_select_large_outlined = + 'photo_size_select_large_outlined'; + static const String photo_size_select_large_rounded = + 'photo_size_select_large_rounded'; + static const String photo_size_select_large_sharp = + 'photo_size_select_large_sharp'; + static const String photo_size_select_small = 'photo_size_select_small'; + static const String photo_size_select_small_outlined = + 'photo_size_select_small_outlined'; + static const String photo_size_select_small_rounded = + 'photo_size_select_small_rounded'; + static const String photo_size_select_small_sharp = + 'photo_size_select_small_sharp'; + static const String php = 'php'; + static const String php_outlined = 'php_outlined'; + static const String php_rounded = 'php_rounded'; + static const String php_sharp = 'php_sharp'; + static const String piano = 'piano'; + static const String piano_off = 'piano_off'; + static const String piano_off_outlined = 'piano_off_outlined'; + static const String piano_off_rounded = 'piano_off_rounded'; + static const String piano_off_sharp = 'piano_off_sharp'; + static const String piano_outlined = 'piano_outlined'; + static const String piano_rounded = 'piano_rounded'; + static const String piano_sharp = 'piano_sharp'; + static const String picture_as_pdf = 'picture_as_pdf'; + static const String picture_as_pdf_outlined = 'picture_as_pdf_outlined'; + static const String picture_as_pdf_rounded = 'picture_as_pdf_rounded'; + static const String picture_as_pdf_sharp = 'picture_as_pdf_sharp'; + static const String picture_in_picture = 'picture_in_picture'; + static const String picture_in_picture_alt = 'picture_in_picture_alt'; + static const String picture_in_picture_alt_outlined = + 'picture_in_picture_alt_outlined'; + static const String picture_in_picture_alt_rounded = + 'picture_in_picture_alt_rounded'; + static const String picture_in_picture_alt_sharp = + 'picture_in_picture_alt_sharp'; + static const String picture_in_picture_outlined = + 'picture_in_picture_outlined'; + static const String picture_in_picture_rounded = 'picture_in_picture_rounded'; + static const String picture_in_picture_sharp = 'picture_in_picture_sharp'; + static const String pie_chart = 'pie_chart'; + static const String pie_chart_outline = 'pie_chart_outline'; + static const String pie_chart_outline_outlined = 'pie_chart_outline_outlined'; + static const String pie_chart_outline_rounded = 'pie_chart_outline_rounded'; + static const String pie_chart_outline_sharp = 'pie_chart_outline_sharp'; + static const String pie_chart_rounded = 'pie_chart_rounded'; + static const String pie_chart_sharp = 'pie_chart_sharp'; + static const String pin = 'pin'; + static const String pin_drop = 'pin_drop'; + static const String pin_drop_outlined = 'pin_drop_outlined'; + static const String pin_drop_rounded = 'pin_drop_rounded'; + static const String pin_drop_sharp = 'pin_drop_sharp'; + static const String pin_end = 'pin_end'; + static const String pin_end_outlined = 'pin_end_outlined'; + static const String pin_end_rounded = 'pin_end_rounded'; + static const String pin_end_sharp = 'pin_end_sharp'; + static const String pin_invoke = 'pin_invoke'; + static const String pin_invoke_outlined = 'pin_invoke_outlined'; + static const String pin_invoke_rounded = 'pin_invoke_rounded'; + static const String pin_invoke_sharp = 'pin_invoke_sharp'; + static const String pin_outlined = 'pin_outlined'; + static const String pin_rounded = 'pin_rounded'; + static const String pin_sharp = 'pin_sharp'; + static const String pinch = 'pinch'; + static const String pinch_outlined = 'pinch_outlined'; + static const String pinch_rounded = 'pinch_rounded'; + static const String pinch_sharp = 'pinch_sharp'; + static const String pivot_table_chart = 'pivot_table_chart'; + static const String pivot_table_chart_outlined = 'pivot_table_chart_outlined'; + static const String pivot_table_chart_rounded = 'pivot_table_chart_rounded'; + static const String pivot_table_chart_sharp = 'pivot_table_chart_sharp'; + static const String pix = 'pix'; + static const String pix_outlined = 'pix_outlined'; + static const String pix_rounded = 'pix_rounded'; + static const String pix_sharp = 'pix_sharp'; + static const String place = 'place'; + static const String place_outlined = 'place_outlined'; + static const String place_rounded = 'place_rounded'; + static const String place_sharp = 'place_sharp'; + static const String plagiarism = 'plagiarism'; + static const String plagiarism_outlined = 'plagiarism_outlined'; + static const String plagiarism_rounded = 'plagiarism_rounded'; + static const String plagiarism_sharp = 'plagiarism_sharp'; + static const String play_arrow = 'play_arrow'; + static const String play_arrow_outlined = 'play_arrow_outlined'; + static const String play_arrow_rounded = 'play_arrow_rounded'; + static const String play_arrow_sharp = 'play_arrow_sharp'; + static const String play_circle = 'play_circle'; + static const String play_circle_fill = 'play_circle_fill'; + static const String play_circle_fill_outlined = 'play_circle_fill_outlined'; + static const String play_circle_fill_rounded = 'play_circle_fill_rounded'; + static const String play_circle_fill_sharp = 'play_circle_fill_sharp'; + static const String play_circle_filled = 'play_circle_filled'; + static const String play_circle_filled_outlined = + 'play_circle_filled_outlined'; + static const String play_circle_filled_rounded = 'play_circle_filled_rounded'; + static const String play_circle_filled_sharp = 'play_circle_filled_sharp'; + static const String play_circle_outline = 'play_circle_outline'; + static const String play_circle_outline_outlined = + 'play_circle_outline_outlined'; + static const String play_circle_outline_rounded = + 'play_circle_outline_rounded'; + static const String play_circle_outline_sharp = 'play_circle_outline_sharp'; + static const String play_circle_outlined = 'play_circle_outlined'; + static const String play_circle_rounded = 'play_circle_rounded'; + static const String play_circle_sharp = 'play_circle_sharp'; + static const String play_disabled = 'play_disabled'; + static const String play_disabled_outlined = 'play_disabled_outlined'; + static const String play_disabled_rounded = 'play_disabled_rounded'; + static const String play_disabled_sharp = 'play_disabled_sharp'; + static const String play_for_work = 'play_for_work'; + static const String play_for_work_outlined = 'play_for_work_outlined'; + static const String play_for_work_rounded = 'play_for_work_rounded'; + static const String play_for_work_sharp = 'play_for_work_sharp'; + static const String play_lesson = 'play_lesson'; + static const String play_lesson_outlined = 'play_lesson_outlined'; + static const String play_lesson_rounded = 'play_lesson_rounded'; + static const String play_lesson_sharp = 'play_lesson_sharp'; + static const String playlist_add = 'playlist_add'; + static const String playlist_add_check = 'playlist_add_check'; + static const String playlist_add_check_circle = 'playlist_add_check_circle'; + static const String playlist_add_check_circle_outlined = + 'playlist_add_check_circle_outlined'; + static const String playlist_add_check_circle_rounded = + 'playlist_add_check_circle_rounded'; + static const String playlist_add_check_circle_sharp = + 'playlist_add_check_circle_sharp'; + static const String playlist_add_check_outlined = + 'playlist_add_check_outlined'; + static const String playlist_add_check_rounded = 'playlist_add_check_rounded'; + static const String playlist_add_check_sharp = 'playlist_add_check_sharp'; + static const String playlist_add_circle = 'playlist_add_circle'; + static const String playlist_add_circle_outlined = + 'playlist_add_circle_outlined'; + static const String playlist_add_circle_rounded = + 'playlist_add_circle_rounded'; + static const String playlist_add_circle_sharp = 'playlist_add_circle_sharp'; + static const String playlist_add_outlined = 'playlist_add_outlined'; + static const String playlist_add_rounded = 'playlist_add_rounded'; + static const String playlist_add_sharp = 'playlist_add_sharp'; + static const String playlist_play = 'playlist_play'; + static const String playlist_play_outlined = 'playlist_play_outlined'; + static const String playlist_play_rounded = 'playlist_play_rounded'; + static const String playlist_play_sharp = 'playlist_play_sharp'; + static const String playlist_remove = 'playlist_remove'; + static const String playlist_remove_outlined = 'playlist_remove_outlined'; + static const String playlist_remove_rounded = 'playlist_remove_rounded'; + static const String playlist_remove_sharp = 'playlist_remove_sharp'; + static const String plumbing = 'plumbing'; + static const String plumbing_outlined = 'plumbing_outlined'; + static const String plumbing_rounded = 'plumbing_rounded'; + static const String plumbing_sharp = 'plumbing_sharp'; + static const String plus_one = 'plus_one'; + static const String plus_one_outlined = 'plus_one_outlined'; + static const String plus_one_rounded = 'plus_one_rounded'; + static const String plus_one_sharp = 'plus_one_sharp'; + static const String podcasts = 'podcasts'; + static const String podcasts_outlined = 'podcasts_outlined'; + static const String podcasts_rounded = 'podcasts_rounded'; + static const String podcasts_sharp = 'podcasts_sharp'; + static const String point_of_sale = 'point_of_sale'; + static const String point_of_sale_outlined = 'point_of_sale_outlined'; + static const String point_of_sale_rounded = 'point_of_sale_rounded'; + static const String point_of_sale_sharp = 'point_of_sale_sharp'; + static const String policy = 'policy'; + static const String policy_outlined = 'policy_outlined'; + static const String policy_rounded = 'policy_rounded'; + static const String policy_sharp = 'policy_sharp'; + static const String poll = 'poll'; + static const String poll_outlined = 'poll_outlined'; + static const String poll_rounded = 'poll_rounded'; + static const String poll_sharp = 'poll_sharp'; + static const String polyline = 'polyline'; + static const String polyline_outlined = 'polyline_outlined'; + static const String polyline_rounded = 'polyline_rounded'; + static const String polyline_sharp = 'polyline_sharp'; + static const String polymer = 'polymer'; + static const String polymer_outlined = 'polymer_outlined'; + static const String polymer_rounded = 'polymer_rounded'; + static const String polymer_sharp = 'polymer_sharp'; + static const String pool = 'pool'; + static const String pool_outlined = 'pool_outlined'; + static const String pool_rounded = 'pool_rounded'; + static const String pool_sharp = 'pool_sharp'; + static const String portable_wifi_off = 'portable_wifi_off'; + static const String portable_wifi_off_outlined = 'portable_wifi_off_outlined'; + static const String portable_wifi_off_rounded = 'portable_wifi_off_rounded'; + static const String portable_wifi_off_sharp = 'portable_wifi_off_sharp'; + static const String portrait = 'portrait'; + static const String portrait_outlined = 'portrait_outlined'; + static const String portrait_rounded = 'portrait_rounded'; + static const String portrait_sharp = 'portrait_sharp'; + static const String post_add = 'post_add'; + static const String post_add_outlined = 'post_add_outlined'; + static const String post_add_rounded = 'post_add_rounded'; + static const String post_add_sharp = 'post_add_sharp'; + static const String power = 'power'; + static const String power_input = 'power_input'; + static const String power_input_outlined = 'power_input_outlined'; + static const String power_input_rounded = 'power_input_rounded'; + static const String power_input_sharp = 'power_input_sharp'; + static const String power_off = 'power_off'; + static const String power_off_outlined = 'power_off_outlined'; + static const String power_off_rounded = 'power_off_rounded'; + static const String power_off_sharp = 'power_off_sharp'; + static const String power_outlined = 'power_outlined'; + static const String power_rounded = 'power_rounded'; + static const String power_settings_new = 'power_settings_new'; + static const String power_settings_new_outlined = + 'power_settings_new_outlined'; + static const String power_settings_new_rounded = 'power_settings_new_rounded'; + static const String power_settings_new_sharp = 'power_settings_new_sharp'; + static const String power_sharp = 'power_sharp'; + static const String precision_manufacturing = 'precision_manufacturing'; + static const String precision_manufacturing_outlined = + 'precision_manufacturing_outlined'; + static const String precision_manufacturing_rounded = + 'precision_manufacturing_rounded'; + static const String precision_manufacturing_sharp = + 'precision_manufacturing_sharp'; + static const String pregnant_woman = 'pregnant_woman'; + static const String pregnant_woman_outlined = 'pregnant_woman_outlined'; + static const String pregnant_woman_rounded = 'pregnant_woman_rounded'; + static const String pregnant_woman_sharp = 'pregnant_woman_sharp'; + static const String present_to_all = 'present_to_all'; + static const String present_to_all_outlined = 'present_to_all_outlined'; + static const String present_to_all_rounded = 'present_to_all_rounded'; + static const String present_to_all_sharp = 'present_to_all_sharp'; + static const String preview = 'preview'; + static const String preview_outlined = 'preview_outlined'; + static const String preview_rounded = 'preview_rounded'; + static const String preview_sharp = 'preview_sharp'; + static const String price_change = 'price_change'; + static const String price_change_outlined = 'price_change_outlined'; + static const String price_change_rounded = 'price_change_rounded'; + static const String price_change_sharp = 'price_change_sharp'; + static const String price_check = 'price_check'; + static const String price_check_outlined = 'price_check_outlined'; + static const String price_check_rounded = 'price_check_rounded'; + static const String price_check_sharp = 'price_check_sharp'; + static const String print = 'print'; + static const String print_disabled = 'print_disabled'; + static const String print_disabled_outlined = 'print_disabled_outlined'; + static const String print_disabled_rounded = 'print_disabled_rounded'; + static const String print_disabled_sharp = 'print_disabled_sharp'; + static const String print_outlined = 'print_outlined'; + static const String print_rounded = 'print_rounded'; + static const String print_sharp = 'print_sharp'; + static const String priority_high = 'priority_high'; + static const String priority_high_outlined = 'priority_high_outlined'; + static const String priority_high_rounded = 'priority_high_rounded'; + static const String priority_high_sharp = 'priority_high_sharp'; + static const String privacy_tip = 'privacy_tip'; + static const String privacy_tip_outlined = 'privacy_tip_outlined'; + static const String privacy_tip_rounded = 'privacy_tip_rounded'; + static const String privacy_tip_sharp = 'privacy_tip_sharp'; + static const String private_connectivity = 'private_connectivity'; + static const String private_connectivity_outlined = + 'private_connectivity_outlined'; + static const String private_connectivity_rounded = + 'private_connectivity_rounded'; + static const String private_connectivity_sharp = 'private_connectivity_sharp'; + static const String production_quantity_limits = 'production_quantity_limits'; + static const String production_quantity_limits_outlined = + 'production_quantity_limits_outlined'; + static const String production_quantity_limits_rounded = + 'production_quantity_limits_rounded'; + static const String production_quantity_limits_sharp = + 'production_quantity_limits_sharp'; + static const String propane = 'propane'; + static const String propane_outlined = 'propane_outlined'; + static const String propane_rounded = 'propane_rounded'; + static const String propane_sharp = 'propane_sharp'; + static const String propane_tank = 'propane_tank'; + static const String propane_tank_outlined = 'propane_tank_outlined'; + static const String propane_tank_rounded = 'propane_tank_rounded'; + static const String propane_tank_sharp = 'propane_tank_sharp'; + static const String psychology = 'psychology'; + static const String psychology_outlined = 'psychology_outlined'; + static const String psychology_rounded = 'psychology_rounded'; + static const String psychology_sharp = 'psychology_sharp'; + static const String public = 'public'; + static const String public_off = 'public_off'; + static const String public_off_outlined = 'public_off_outlined'; + static const String public_off_rounded = 'public_off_rounded'; + static const String public_off_sharp = 'public_off_sharp'; + static const String public_outlined = 'public_outlined'; + static const String public_rounded = 'public_rounded'; + static const String public_sharp = 'public_sharp'; + static const String publish = 'publish'; + static const String publish_outlined = 'publish_outlined'; + static const String publish_rounded = 'publish_rounded'; + static const String publish_sharp = 'publish_sharp'; + static const String published_with_changes = 'published_with_changes'; + static const String published_with_changes_outlined = + 'published_with_changes_outlined'; + static const String published_with_changes_rounded = + 'published_with_changes_rounded'; + static const String published_with_changes_sharp = + 'published_with_changes_sharp'; + static const String punch_clock = 'punch_clock'; + static const String punch_clock_outlined = 'punch_clock_outlined'; + static const String punch_clock_rounded = 'punch_clock_rounded'; + static const String punch_clock_sharp = 'punch_clock_sharp'; + static const String push_pin = 'push_pin'; + static const String push_pin_outlined = 'push_pin_outlined'; + static const String push_pin_rounded = 'push_pin_rounded'; + static const String push_pin_sharp = 'push_pin_sharp'; + static const String qr_code = 'qr_code'; + static const String qr_code_2 = 'qr_code_2'; + static const String qr_code_2_outlined = 'qr_code_2_outlined'; + static const String qr_code_2_rounded = 'qr_code_2_rounded'; + static const String qr_code_2_sharp = 'qr_code_2_sharp'; + static const String qr_code_outlined = 'qr_code_outlined'; + static const String qr_code_rounded = 'qr_code_rounded'; + static const String qr_code_scanner = 'qr_code_scanner'; + static const String qr_code_scanner_outlined = 'qr_code_scanner_outlined'; + static const String qr_code_scanner_rounded = 'qr_code_scanner_rounded'; + static const String qr_code_scanner_sharp = 'qr_code_scanner_sharp'; + static const String qr_code_sharp = 'qr_code_sharp'; + static const String query_builder = 'query_builder'; + static const String query_builder_outlined = 'query_builder_outlined'; + static const String query_builder_rounded = 'query_builder_rounded'; + static const String query_builder_sharp = 'query_builder_sharp'; + static const String query_stats = 'query_stats'; + static const String query_stats_outlined = 'query_stats_outlined'; + static const String query_stats_rounded = 'query_stats_rounded'; + static const String query_stats_sharp = 'query_stats_sharp'; + static const String question_answer = 'question_answer'; + static const String question_answer_outlined = 'question_answer_outlined'; + static const String question_answer_rounded = 'question_answer_rounded'; + static const String question_answer_sharp = 'question_answer_sharp'; + static const String question_mark = 'question_mark'; + static const String question_mark_outlined = 'question_mark_outlined'; + static const String question_mark_rounded = 'question_mark_rounded'; + static const String question_mark_sharp = 'question_mark_sharp'; + static const String queue = 'queue'; + static const String queue_music = 'queue_music'; + static const String queue_music_outlined = 'queue_music_outlined'; + static const String queue_music_rounded = 'queue_music_rounded'; + static const String queue_music_sharp = 'queue_music_sharp'; + static const String queue_outlined = 'queue_outlined'; + static const String queue_play_next = 'queue_play_next'; + static const String queue_play_next_outlined = 'queue_play_next_outlined'; + static const String queue_play_next_rounded = 'queue_play_next_rounded'; + static const String queue_play_next_sharp = 'queue_play_next_sharp'; + static const String queue_rounded = 'queue_rounded'; + static const String queue_sharp = 'queue_sharp'; + static const String quick_contacts_dialer = 'quick_contacts_dialer'; + static const String quick_contacts_dialer_outlined = + 'quick_contacts_dialer_outlined'; + static const String quick_contacts_dialer_rounded = + 'quick_contacts_dialer_rounded'; + static const String quick_contacts_dialer_sharp = + 'quick_contacts_dialer_sharp'; + static const String quick_contacts_mail = 'quick_contacts_mail'; + static const String quick_contacts_mail_outlined = + 'quick_contacts_mail_outlined'; + static const String quick_contacts_mail_rounded = + 'quick_contacts_mail_rounded'; + static const String quick_contacts_mail_sharp = 'quick_contacts_mail_sharp'; + static const String quickreply = 'quickreply'; + static const String quickreply_outlined = 'quickreply_outlined'; + static const String quickreply_rounded = 'quickreply_rounded'; + static const String quickreply_sharp = 'quickreply_sharp'; + static const String quiz = 'quiz'; + static const String quiz_outlined = 'quiz_outlined'; + static const String quiz_rounded = 'quiz_rounded'; + static const String quiz_sharp = 'quiz_sharp'; + static const String quora = 'quora'; + static const String quora_outlined = 'quora_outlined'; + static const String quora_rounded = 'quora_rounded'; + static const String quora_sharp = 'quora_sharp'; + static const String r_mobiledata = 'r_mobiledata'; + static const String r_mobiledata_outlined = 'r_mobiledata_outlined'; + static const String r_mobiledata_rounded = 'r_mobiledata_rounded'; + static const String r_mobiledata_sharp = 'r_mobiledata_sharp'; + static const String radar = 'radar'; + static const String radar_outlined = 'radar_outlined'; + static const String radar_rounded = 'radar_rounded'; + static const String radar_sharp = 'radar_sharp'; + static const String radio = 'radio'; + static const String radio_button_checked = 'radio_button_checked'; + static const String radio_button_checked_outlined = + 'radio_button_checked_outlined'; + static const String radio_button_checked_rounded = + 'radio_button_checked_rounded'; + static const String radio_button_checked_sharp = 'radio_button_checked_sharp'; + static const String radio_button_off = 'radio_button_off'; + static const String radio_button_off_outlined = 'radio_button_off_outlined'; + static const String radio_button_off_rounded = 'radio_button_off_rounded'; + static const String radio_button_off_sharp = 'radio_button_off_sharp'; + static const String radio_button_on = 'radio_button_on'; + static const String radio_button_on_outlined = 'radio_button_on_outlined'; + static const String radio_button_on_rounded = 'radio_button_on_rounded'; + static const String radio_button_on_sharp = 'radio_button_on_sharp'; + static const String radio_button_unchecked = 'radio_button_unchecked'; + static const String radio_button_unchecked_outlined = + 'radio_button_unchecked_outlined'; + static const String radio_button_unchecked_rounded = + 'radio_button_unchecked_rounded'; + static const String radio_button_unchecked_sharp = + 'radio_button_unchecked_sharp'; + static const String radio_outlined = 'radio_outlined'; + static const String radio_rounded = 'radio_rounded'; + static const String radio_sharp = 'radio_sharp'; + static const String railway_alert = 'railway_alert'; + static const String railway_alert_outlined = 'railway_alert_outlined'; + static const String railway_alert_rounded = 'railway_alert_rounded'; + static const String railway_alert_sharp = 'railway_alert_sharp'; + static const String ramen_dining = 'ramen_dining'; + static const String ramen_dining_outlined = 'ramen_dining_outlined'; + static const String ramen_dining_rounded = 'ramen_dining_rounded'; + static const String ramen_dining_sharp = 'ramen_dining_sharp'; + static const String ramp_left = 'ramp_left'; + static const String ramp_left_outlined = 'ramp_left_outlined'; + static const String ramp_left_rounded = 'ramp_left_rounded'; + static const String ramp_left_sharp = 'ramp_left_sharp'; + static const String ramp_right = 'ramp_right'; + static const String ramp_right_outlined = 'ramp_right_outlined'; + static const String ramp_right_rounded = 'ramp_right_rounded'; + static const String ramp_right_sharp = 'ramp_right_sharp'; + static const String rate_review = 'rate_review'; + static const String rate_review_outlined = 'rate_review_outlined'; + static const String rate_review_rounded = 'rate_review_rounded'; + static const String rate_review_sharp = 'rate_review_sharp'; + static const String raw_off = 'raw_off'; + static const String raw_off_outlined = 'raw_off_outlined'; + static const String raw_off_rounded = 'raw_off_rounded'; + static const String raw_off_sharp = 'raw_off_sharp'; + static const String raw_on = 'raw_on'; + static const String raw_on_outlined = 'raw_on_outlined'; + static const String raw_on_rounded = 'raw_on_rounded'; + static const String raw_on_sharp = 'raw_on_sharp'; + static const String read_more = 'read_more'; + static const String read_more_outlined = 'read_more_outlined'; + static const String read_more_rounded = 'read_more_rounded'; + static const String read_more_sharp = 'read_more_sharp'; + static const String real_estate_agent = 'real_estate_agent'; + static const String real_estate_agent_outlined = 'real_estate_agent_outlined'; + static const String real_estate_agent_rounded = 'real_estate_agent_rounded'; + static const String real_estate_agent_sharp = 'real_estate_agent_sharp'; + static const String receipt = 'receipt'; + static const String receipt_long = 'receipt_long'; + static const String receipt_long_outlined = 'receipt_long_outlined'; + static const String receipt_long_rounded = 'receipt_long_rounded'; + static const String receipt_long_sharp = 'receipt_long_sharp'; + static const String receipt_outlined = 'receipt_outlined'; + static const String receipt_rounded = 'receipt_rounded'; + static const String receipt_sharp = 'receipt_sharp'; + static const String recent_actors = 'recent_actors'; + static const String recent_actors_outlined = 'recent_actors_outlined'; + static const String recent_actors_rounded = 'recent_actors_rounded'; + static const String recent_actors_sharp = 'recent_actors_sharp'; + static const String recommend = 'recommend'; + static const String recommend_outlined = 'recommend_outlined'; + static const String recommend_rounded = 'recommend_rounded'; + static const String recommend_sharp = 'recommend_sharp'; + static const String record_voice_over = 'record_voice_over'; + static const String record_voice_over_outlined = 'record_voice_over_outlined'; + static const String record_voice_over_rounded = 'record_voice_over_rounded'; + static const String record_voice_over_sharp = 'record_voice_over_sharp'; + static const String rectangle = 'rectangle'; + static const String rectangle_outlined = 'rectangle_outlined'; + static const String rectangle_rounded = 'rectangle_rounded'; + static const String rectangle_sharp = 'rectangle_sharp'; + static const String recycling = 'recycling'; + static const String recycling_outlined = 'recycling_outlined'; + static const String recycling_rounded = 'recycling_rounded'; + static const String recycling_sharp = 'recycling_sharp'; + static const String reddit = 'reddit'; + static const String reddit_outlined = 'reddit_outlined'; + static const String reddit_rounded = 'reddit_rounded'; + static const String reddit_sharp = 'reddit_sharp'; + static const String redeem = 'redeem'; + static const String redeem_outlined = 'redeem_outlined'; + static const String redeem_rounded = 'redeem_rounded'; + static const String redeem_sharp = 'redeem_sharp'; + static const String redo = 'redo'; + static const String redo_outlined = 'redo_outlined'; + static const String redo_rounded = 'redo_rounded'; + static const String redo_sharp = 'redo_sharp'; + static const String reduce_capacity = 'reduce_capacity'; + static const String reduce_capacity_outlined = 'reduce_capacity_outlined'; + static const String reduce_capacity_rounded = 'reduce_capacity_rounded'; + static const String reduce_capacity_sharp = 'reduce_capacity_sharp'; + static const String refresh = 'refresh'; + static const String refresh_outlined = 'refresh_outlined'; + static const String refresh_rounded = 'refresh_rounded'; + static const String refresh_sharp = 'refresh_sharp'; + static const String remember_me = 'remember_me'; + static const String remember_me_outlined = 'remember_me_outlined'; + static const String remember_me_rounded = 'remember_me_rounded'; + static const String remember_me_sharp = 'remember_me_sharp'; + static const String remove = 'remove'; + static const String remove_circle = 'remove_circle'; + static const String remove_circle_outline = 'remove_circle_outline'; + static const String remove_circle_outline_outlined = + 'remove_circle_outline_outlined'; + static const String remove_circle_outline_rounded = + 'remove_circle_outline_rounded'; + static const String remove_circle_outline_sharp = + 'remove_circle_outline_sharp'; + static const String remove_circle_outlined = 'remove_circle_outlined'; + static const String remove_circle_rounded = 'remove_circle_rounded'; + static const String remove_circle_sharp = 'remove_circle_sharp'; + static const String remove_done = 'remove_done'; + static const String remove_done_outlined = 'remove_done_outlined'; + static const String remove_done_rounded = 'remove_done_rounded'; + static const String remove_done_sharp = 'remove_done_sharp'; + static const String remove_from_queue = 'remove_from_queue'; + static const String remove_from_queue_outlined = 'remove_from_queue_outlined'; + static const String remove_from_queue_rounded = 'remove_from_queue_rounded'; + static const String remove_from_queue_sharp = 'remove_from_queue_sharp'; + static const String remove_moderator = 'remove_moderator'; + static const String remove_moderator_outlined = 'remove_moderator_outlined'; + static const String remove_moderator_rounded = 'remove_moderator_rounded'; + static const String remove_moderator_sharp = 'remove_moderator_sharp'; + static const String remove_outlined = 'remove_outlined'; + static const String remove_red_eye = 'remove_red_eye'; + static const String remove_red_eye_outlined = 'remove_red_eye_outlined'; + static const String remove_red_eye_rounded = 'remove_red_eye_rounded'; + static const String remove_red_eye_sharp = 'remove_red_eye_sharp'; + static const String remove_road = 'remove_road'; + static const String remove_road_outlined = 'remove_road_outlined'; + static const String remove_road_rounded = 'remove_road_rounded'; + static const String remove_road_sharp = 'remove_road_sharp'; + static const String remove_rounded = 'remove_rounded'; + static const String remove_sharp = 'remove_sharp'; + static const String remove_shopping_cart = 'remove_shopping_cart'; + static const String remove_shopping_cart_outlined = + 'remove_shopping_cart_outlined'; + static const String remove_shopping_cart_rounded = + 'remove_shopping_cart_rounded'; + static const String remove_shopping_cart_sharp = 'remove_shopping_cart_sharp'; + static const String reorder = 'reorder'; + static const String reorder_outlined = 'reorder_outlined'; + static const String reorder_rounded = 'reorder_rounded'; + static const String reorder_sharp = 'reorder_sharp'; + static const String repeat = 'repeat'; + static const String repeat_on = 'repeat_on'; + static const String repeat_on_outlined = 'repeat_on_outlined'; + static const String repeat_on_rounded = 'repeat_on_rounded'; + static const String repeat_on_sharp = 'repeat_on_sharp'; + static const String repeat_one = 'repeat_one'; + static const String repeat_one_on = 'repeat_one_on'; + static const String repeat_one_on_outlined = 'repeat_one_on_outlined'; + static const String repeat_one_on_rounded = 'repeat_one_on_rounded'; + static const String repeat_one_on_sharp = 'repeat_one_on_sharp'; + static const String repeat_one_outlined = 'repeat_one_outlined'; + static const String repeat_one_rounded = 'repeat_one_rounded'; + static const String repeat_one_sharp = 'repeat_one_sharp'; + static const String repeat_outlined = 'repeat_outlined'; + static const String repeat_rounded = 'repeat_rounded'; + static const String repeat_sharp = 'repeat_sharp'; + static const String replay = 'replay'; + static const String replay_10 = 'replay_10'; + static const String replay_10_outlined = 'replay_10_outlined'; + static const String replay_10_rounded = 'replay_10_rounded'; + static const String replay_10_sharp = 'replay_10_sharp'; + static const String replay_30 = 'replay_30'; + static const String replay_30_outlined = 'replay_30_outlined'; + static const String replay_30_rounded = 'replay_30_rounded'; + static const String replay_30_sharp = 'replay_30_sharp'; + static const String replay_5 = 'replay_5'; + static const String replay_5_outlined = 'replay_5_outlined'; + static const String replay_5_rounded = 'replay_5_rounded'; + static const String replay_5_sharp = 'replay_5_sharp'; + static const String replay_circle_filled = 'replay_circle_filled'; + static const String replay_circle_filled_outlined = + 'replay_circle_filled_outlined'; + static const String replay_circle_filled_rounded = + 'replay_circle_filled_rounded'; + static const String replay_circle_filled_sharp = 'replay_circle_filled_sharp'; + static const String replay_outlined = 'replay_outlined'; + static const String replay_rounded = 'replay_rounded'; + static const String replay_sharp = 'replay_sharp'; + static const String reply = 'reply'; + static const String reply_all = 'reply_all'; + static const String reply_all_outlined = 'reply_all_outlined'; + static const String reply_all_rounded = 'reply_all_rounded'; + static const String reply_all_sharp = 'reply_all_sharp'; + static const String reply_outlined = 'reply_outlined'; + static const String reply_rounded = 'reply_rounded'; + static const String reply_sharp = 'reply_sharp'; + static const String report = 'report'; + static const String report_gmailerrorred = 'report_gmailerrorred'; + static const String report_gmailerrorred_outlined = + 'report_gmailerrorred_outlined'; + static const String report_gmailerrorred_rounded = + 'report_gmailerrorred_rounded'; + static const String report_gmailerrorred_sharp = 'report_gmailerrorred_sharp'; + static const String report_off = 'report_off'; + static const String report_off_outlined = 'report_off_outlined'; + static const String report_off_rounded = 'report_off_rounded'; + static const String report_off_sharp = 'report_off_sharp'; + static const String report_outlined = 'report_outlined'; + static const String report_problem = 'report_problem'; + static const String report_problem_outlined = 'report_problem_outlined'; + static const String report_problem_rounded = 'report_problem_rounded'; + static const String report_problem_sharp = 'report_problem_sharp'; + static const String report_rounded = 'report_rounded'; + static const String report_sharp = 'report_sharp'; + static const String request_page = 'request_page'; + static const String request_page_outlined = 'request_page_outlined'; + static const String request_page_rounded = 'request_page_rounded'; + static const String request_page_sharp = 'request_page_sharp'; + static const String request_quote = 'request_quote'; + static const String request_quote_outlined = 'request_quote_outlined'; + static const String request_quote_rounded = 'request_quote_rounded'; + static const String request_quote_sharp = 'request_quote_sharp'; + static const String reset_tv = 'reset_tv'; + static const String reset_tv_outlined = 'reset_tv_outlined'; + static const String reset_tv_rounded = 'reset_tv_rounded'; + static const String reset_tv_sharp = 'reset_tv_sharp'; + static const String restart_alt = 'restart_alt'; + static const String restart_alt_outlined = 'restart_alt_outlined'; + static const String restart_alt_rounded = 'restart_alt_rounded'; + static const String restart_alt_sharp = 'restart_alt_sharp'; + static const String restaurant = 'restaurant'; + static const String restaurant_menu = 'restaurant_menu'; + static const String restaurant_menu_outlined = 'restaurant_menu_outlined'; + static const String restaurant_menu_rounded = 'restaurant_menu_rounded'; + static const String restaurant_menu_sharp = 'restaurant_menu_sharp'; + static const String restaurant_outlined = 'restaurant_outlined'; + static const String restaurant_rounded = 'restaurant_rounded'; + static const String restaurant_sharp = 'restaurant_sharp'; + static const String restore = 'restore'; + static const String restore_from_trash = 'restore_from_trash'; + static const String restore_from_trash_outlined = + 'restore_from_trash_outlined'; + static const String restore_from_trash_rounded = 'restore_from_trash_rounded'; + static const String restore_from_trash_sharp = 'restore_from_trash_sharp'; + static const String restore_outlined = 'restore_outlined'; + static const String restore_page = 'restore_page'; + static const String restore_page_outlined = 'restore_page_outlined'; + static const String restore_page_rounded = 'restore_page_rounded'; + static const String restore_page_sharp = 'restore_page_sharp'; + static const String restore_rounded = 'restore_rounded'; + static const String restore_sharp = 'restore_sharp'; + static const String reviews = 'reviews'; + static const String reviews_outlined = 'reviews_outlined'; + static const String reviews_rounded = 'reviews_rounded'; + static const String reviews_sharp = 'reviews_sharp'; + static const String rice_bowl = 'rice_bowl'; + static const String rice_bowl_outlined = 'rice_bowl_outlined'; + static const String rice_bowl_rounded = 'rice_bowl_rounded'; + static const String rice_bowl_sharp = 'rice_bowl_sharp'; + static const String ring_volume = 'ring_volume'; + static const String ring_volume_outlined = 'ring_volume_outlined'; + static const String ring_volume_rounded = 'ring_volume_rounded'; + static const String ring_volume_sharp = 'ring_volume_sharp'; + static const String rocket = 'rocket'; + static const String rocket_launch = 'rocket_launch'; + static const String rocket_launch_outlined = 'rocket_launch_outlined'; + static const String rocket_launch_rounded = 'rocket_launch_rounded'; + static const String rocket_launch_sharp = 'rocket_launch_sharp'; + static const String rocket_outlined = 'rocket_outlined'; + static const String rocket_rounded = 'rocket_rounded'; + static const String rocket_sharp = 'rocket_sharp'; + static const String roller_shades = 'roller_shades'; + static const String roller_shades_closed = 'roller_shades_closed'; + static const String roller_shades_closed_outlined = + 'roller_shades_closed_outlined'; + static const String roller_shades_closed_rounded = + 'roller_shades_closed_rounded'; + static const String roller_shades_closed_sharp = 'roller_shades_closed_sharp'; + static const String roller_shades_outlined = 'roller_shades_outlined'; + static const String roller_shades_rounded = 'roller_shades_rounded'; + static const String roller_shades_sharp = 'roller_shades_sharp'; + static const String roller_skating = 'roller_skating'; + static const String roller_skating_outlined = 'roller_skating_outlined'; + static const String roller_skating_rounded = 'roller_skating_rounded'; + static const String roller_skating_sharp = 'roller_skating_sharp'; + static const String roofing = 'roofing'; + static const String roofing_outlined = 'roofing_outlined'; + static const String roofing_rounded = 'roofing_rounded'; + static const String roofing_sharp = 'roofing_sharp'; + static const String room = 'room'; + static const String room_outlined = 'room_outlined'; + static const String room_preferences = 'room_preferences'; + static const String room_preferences_outlined = 'room_preferences_outlined'; + static const String room_preferences_rounded = 'room_preferences_rounded'; + static const String room_preferences_sharp = 'room_preferences_sharp'; + static const String room_rounded = 'room_rounded'; + static const String room_service = 'room_service'; + static const String room_service_outlined = 'room_service_outlined'; + static const String room_service_rounded = 'room_service_rounded'; + static const String room_service_sharp = 'room_service_sharp'; + static const String room_sharp = 'room_sharp'; + static const String rotate_90_degrees_ccw = 'rotate_90_degrees_ccw'; + static const String rotate_90_degrees_ccw_outlined = + 'rotate_90_degrees_ccw_outlined'; + static const String rotate_90_degrees_ccw_rounded = + 'rotate_90_degrees_ccw_rounded'; + static const String rotate_90_degrees_ccw_sharp = + 'rotate_90_degrees_ccw_sharp'; + static const String rotate_90_degrees_cw = 'rotate_90_degrees_cw'; + static const String rotate_90_degrees_cw_outlined = + 'rotate_90_degrees_cw_outlined'; + static const String rotate_90_degrees_cw_rounded = + 'rotate_90_degrees_cw_rounded'; + static const String rotate_90_degrees_cw_sharp = 'rotate_90_degrees_cw_sharp'; + static const String rotate_left = 'rotate_left'; + static const String rotate_left_outlined = 'rotate_left_outlined'; + static const String rotate_left_rounded = 'rotate_left_rounded'; + static const String rotate_left_sharp = 'rotate_left_sharp'; + static const String rotate_right = 'rotate_right'; + static const String rotate_right_outlined = 'rotate_right_outlined'; + static const String rotate_right_rounded = 'rotate_right_rounded'; + static const String rotate_right_sharp = 'rotate_right_sharp'; + static const String roundabout_left = 'roundabout_left'; + static const String roundabout_left_outlined = 'roundabout_left_outlined'; + static const String roundabout_left_rounded = 'roundabout_left_rounded'; + static const String roundabout_left_sharp = 'roundabout_left_sharp'; + static const String roundabout_right = 'roundabout_right'; + static const String roundabout_right_outlined = 'roundabout_right_outlined'; + static const String roundabout_right_rounded = 'roundabout_right_rounded'; + static const String roundabout_right_sharp = 'roundabout_right_sharp'; + static const String rounded_corner = 'rounded_corner'; + static const String rounded_corner_outlined = 'rounded_corner_outlined'; + static const String rounded_corner_rounded = 'rounded_corner_rounded'; + static const String rounded_corner_sharp = 'rounded_corner_sharp'; + static const String route = 'route'; + static const String route_outlined = 'route_outlined'; + static const String route_rounded = 'route_rounded'; + static const String route_sharp = 'route_sharp'; + static const String router = 'router'; + static const String router_outlined = 'router_outlined'; + static const String router_rounded = 'router_rounded'; + static const String router_sharp = 'router_sharp'; + static const String rowing = 'rowing'; + static const String rowing_outlined = 'rowing_outlined'; + static const String rowing_rounded = 'rowing_rounded'; + static const String rowing_sharp = 'rowing_sharp'; + static const String rss_feed = 'rss_feed'; + static const String rss_feed_outlined = 'rss_feed_outlined'; + static const String rss_feed_rounded = 'rss_feed_rounded'; + static const String rss_feed_sharp = 'rss_feed_sharp'; + static const String rsvp = 'rsvp'; + static const String rsvp_outlined = 'rsvp_outlined'; + static const String rsvp_rounded = 'rsvp_rounded'; + static const String rsvp_sharp = 'rsvp_sharp'; + static const String rtt = 'rtt'; + static const String rtt_outlined = 'rtt_outlined'; + static const String rtt_rounded = 'rtt_rounded'; + static const String rtt_sharp = 'rtt_sharp'; + static const String rule = 'rule'; + static const String rule_folder = 'rule_folder'; + static const String rule_folder_outlined = 'rule_folder_outlined'; + static const String rule_folder_rounded = 'rule_folder_rounded'; + static const String rule_folder_sharp = 'rule_folder_sharp'; + static const String rule_outlined = 'rule_outlined'; + static const String rule_rounded = 'rule_rounded'; + static const String rule_sharp = 'rule_sharp'; + static const String run_circle = 'run_circle'; + static const String run_circle_outlined = 'run_circle_outlined'; + static const String run_circle_rounded = 'run_circle_rounded'; + static const String run_circle_sharp = 'run_circle_sharp'; + static const String running_with_errors = 'running_with_errors'; + static const String running_with_errors_outlined = + 'running_with_errors_outlined'; + static const String running_with_errors_rounded = + 'running_with_errors_rounded'; + static const String running_with_errors_sharp = 'running_with_errors_sharp'; + static const String rv_hookup = 'rv_hookup'; + static const String rv_hookup_outlined = 'rv_hookup_outlined'; + static const String rv_hookup_rounded = 'rv_hookup_rounded'; + static const String rv_hookup_sharp = 'rv_hookup_sharp'; + static const String safety_check = 'safety_check'; + static const String safety_check_outlined = 'safety_check_outlined'; + static const String safety_check_rounded = 'safety_check_rounded'; + static const String safety_check_sharp = 'safety_check_sharp'; + static const String safety_divider = 'safety_divider'; + static const String safety_divider_outlined = 'safety_divider_outlined'; + static const String safety_divider_rounded = 'safety_divider_rounded'; + static const String safety_divider_sharp = 'safety_divider_sharp'; + static const String sailing = 'sailing'; + static const String sailing_outlined = 'sailing_outlined'; + static const String sailing_rounded = 'sailing_rounded'; + static const String sailing_sharp = 'sailing_sharp'; + static const String sanitizer = 'sanitizer'; + static const String sanitizer_outlined = 'sanitizer_outlined'; + static const String sanitizer_rounded = 'sanitizer_rounded'; + static const String sanitizer_sharp = 'sanitizer_sharp'; + static const String satellite = 'satellite'; + static const String satellite_alt = 'satellite_alt'; + static const String satellite_alt_outlined = 'satellite_alt_outlined'; + static const String satellite_alt_rounded = 'satellite_alt_rounded'; + static const String satellite_alt_sharp = 'satellite_alt_sharp'; + static const String satellite_outlined = 'satellite_outlined'; + static const String satellite_rounded = 'satellite_rounded'; + static const String satellite_sharp = 'satellite_sharp'; + static const String save = 'save'; + static const String save_alt = 'save_alt'; + static const String save_alt_outlined = 'save_alt_outlined'; + static const String save_alt_rounded = 'save_alt_rounded'; + static const String save_alt_sharp = 'save_alt_sharp'; + static const String save_as = 'save_as'; + static const String save_as_outlined = 'save_as_outlined'; + static const String save_as_rounded = 'save_as_rounded'; + static const String save_as_sharp = 'save_as_sharp'; + static const String save_outlined = 'save_outlined'; + static const String save_rounded = 'save_rounded'; + static const String save_sharp = 'save_sharp'; + static const String saved_search = 'saved_search'; + static const String saved_search_outlined = 'saved_search_outlined'; + static const String saved_search_rounded = 'saved_search_rounded'; + static const String saved_search_sharp = 'saved_search_sharp'; + static const String savings = 'savings'; + static const String savings_outlined = 'savings_outlined'; + static const String savings_rounded = 'savings_rounded'; + static const String savings_sharp = 'savings_sharp'; + static const String scale = 'scale'; + static const String scale_outlined = 'scale_outlined'; + static const String scale_rounded = 'scale_rounded'; + static const String scale_sharp = 'scale_sharp'; + static const String scanner = 'scanner'; + static const String scanner_outlined = 'scanner_outlined'; + static const String scanner_rounded = 'scanner_rounded'; + static const String scanner_sharp = 'scanner_sharp'; + static const String scatter_plot = 'scatter_plot'; + static const String scatter_plot_outlined = 'scatter_plot_outlined'; + static const String scatter_plot_rounded = 'scatter_plot_rounded'; + static const String scatter_plot_sharp = 'scatter_plot_sharp'; + static const String schedule = 'schedule'; + static const String schedule_outlined = 'schedule_outlined'; + static const String schedule_rounded = 'schedule_rounded'; + static const String schedule_send = 'schedule_send'; + static const String schedule_send_outlined = 'schedule_send_outlined'; + static const String schedule_send_rounded = 'schedule_send_rounded'; + static const String schedule_send_sharp = 'schedule_send_sharp'; + static const String schedule_sharp = 'schedule_sharp'; + static const String schema = 'schema'; + static const String schema_outlined = 'schema_outlined'; + static const String schema_rounded = 'schema_rounded'; + static const String schema_sharp = 'schema_sharp'; + static const String school = 'school'; + static const String school_outlined = 'school_outlined'; + static const String school_rounded = 'school_rounded'; + static const String school_sharp = 'school_sharp'; + static const String science = 'science'; + static const String science_outlined = 'science_outlined'; + static const String science_rounded = 'science_rounded'; + static const String science_sharp = 'science_sharp'; + static const String score = 'score'; + static const String score_outlined = 'score_outlined'; + static const String score_rounded = 'score_rounded'; + static const String score_sharp = 'score_sharp'; + static const String scoreboard = 'scoreboard'; + static const String scoreboard_outlined = 'scoreboard_outlined'; + static const String scoreboard_rounded = 'scoreboard_rounded'; + static const String scoreboard_sharp = 'scoreboard_sharp'; + static const String screen_lock_landscape = 'screen_lock_landscape'; + static const String screen_lock_landscape_outlined = + 'screen_lock_landscape_outlined'; + static const String screen_lock_landscape_rounded = + 'screen_lock_landscape_rounded'; + static const String screen_lock_landscape_sharp = + 'screen_lock_landscape_sharp'; + static const String screen_lock_portrait = 'screen_lock_portrait'; + static const String screen_lock_portrait_outlined = + 'screen_lock_portrait_outlined'; + static const String screen_lock_portrait_rounded = + 'screen_lock_portrait_rounded'; + static const String screen_lock_portrait_sharp = 'screen_lock_portrait_sharp'; + static const String screen_lock_rotation = 'screen_lock_rotation'; + static const String screen_lock_rotation_outlined = + 'screen_lock_rotation_outlined'; + static const String screen_lock_rotation_rounded = + 'screen_lock_rotation_rounded'; + static const String screen_lock_rotation_sharp = 'screen_lock_rotation_sharp'; + static const String screen_rotation = 'screen_rotation'; + static const String screen_rotation_alt = 'screen_rotation_alt'; + static const String screen_rotation_alt_outlined = + 'screen_rotation_alt_outlined'; + static const String screen_rotation_alt_rounded = + 'screen_rotation_alt_rounded'; + static const String screen_rotation_alt_sharp = 'screen_rotation_alt_sharp'; + static const String screen_rotation_outlined = 'screen_rotation_outlined'; + static const String screen_rotation_rounded = 'screen_rotation_rounded'; + static const String screen_rotation_sharp = 'screen_rotation_sharp'; + static const String screen_search_desktop = 'screen_search_desktop'; + static const String screen_search_desktop_outlined = + 'screen_search_desktop_outlined'; + static const String screen_search_desktop_rounded = + 'screen_search_desktop_rounded'; + static const String screen_search_desktop_sharp = + 'screen_search_desktop_sharp'; + static const String screen_share = 'screen_share'; + static const String screen_share_outlined = 'screen_share_outlined'; + static const String screen_share_rounded = 'screen_share_rounded'; + static const String screen_share_sharp = 'screen_share_sharp'; + static const String screenshot = 'screenshot'; + static const String screenshot_monitor = 'screenshot_monitor'; + static const String screenshot_monitor_outlined = + 'screenshot_monitor_outlined'; + static const String screenshot_monitor_rounded = 'screenshot_monitor_rounded'; + static const String screenshot_monitor_sharp = 'screenshot_monitor_sharp'; + static const String screenshot_outlined = 'screenshot_outlined'; + static const String screenshot_rounded = 'screenshot_rounded'; + static const String screenshot_sharp = 'screenshot_sharp'; + static const String scuba_diving = 'scuba_diving'; + static const String scuba_diving_outlined = 'scuba_diving_outlined'; + static const String scuba_diving_rounded = 'scuba_diving_rounded'; + static const String scuba_diving_sharp = 'scuba_diving_sharp'; + static const String sd = 'sd'; + static const String sd_card = 'sd_card'; + static const String sd_card_alert = 'sd_card_alert'; + static const String sd_card_alert_outlined = 'sd_card_alert_outlined'; + static const String sd_card_alert_rounded = 'sd_card_alert_rounded'; + static const String sd_card_alert_sharp = 'sd_card_alert_sharp'; + static const String sd_card_outlined = 'sd_card_outlined'; + static const String sd_card_rounded = 'sd_card_rounded'; + static const String sd_card_sharp = 'sd_card_sharp'; + static const String sd_outlined = 'sd_outlined'; + static const String sd_rounded = 'sd_rounded'; + static const String sd_sharp = 'sd_sharp'; + static const String sd_storage = 'sd_storage'; + static const String sd_storage_outlined = 'sd_storage_outlined'; + static const String sd_storage_rounded = 'sd_storage_rounded'; + static const String sd_storage_sharp = 'sd_storage_sharp'; + static const String search = 'search'; + static const String search_off = 'search_off'; + static const String search_off_outlined = 'search_off_outlined'; + static const String search_off_rounded = 'search_off_rounded'; + static const String search_off_sharp = 'search_off_sharp'; + static const String search_outlined = 'search_outlined'; + static const String search_rounded = 'search_rounded'; + static const String search_sharp = 'search_sharp'; + static const String security = 'security'; + static const String security_outlined = 'security_outlined'; + static const String security_rounded = 'security_rounded'; + static const String security_sharp = 'security_sharp'; + static const String security_update = 'security_update'; + static const String security_update_good = 'security_update_good'; + static const String security_update_good_outlined = + 'security_update_good_outlined'; + static const String security_update_good_rounded = + 'security_update_good_rounded'; + static const String security_update_good_sharp = 'security_update_good_sharp'; + static const String security_update_outlined = 'security_update_outlined'; + static const String security_update_rounded = 'security_update_rounded'; + static const String security_update_sharp = 'security_update_sharp'; + static const String security_update_warning = 'security_update_warning'; + static const String security_update_warning_outlined = + 'security_update_warning_outlined'; + static const String security_update_warning_rounded = + 'security_update_warning_rounded'; + static const String security_update_warning_sharp = + 'security_update_warning_sharp'; + static const String segment = 'segment'; + static const String segment_outlined = 'segment_outlined'; + static const String segment_rounded = 'segment_rounded'; + static const String segment_sharp = 'segment_sharp'; + static const String select_all = 'select_all'; + static const String select_all_outlined = 'select_all_outlined'; + static const String select_all_rounded = 'select_all_rounded'; + static const String select_all_sharp = 'select_all_sharp'; + static const String self_improvement = 'self_improvement'; + static const String self_improvement_outlined = 'self_improvement_outlined'; + static const String self_improvement_rounded = 'self_improvement_rounded'; + static const String self_improvement_sharp = 'self_improvement_sharp'; + static const String sell = 'sell'; + static const String sell_outlined = 'sell_outlined'; + static const String sell_rounded = 'sell_rounded'; + static const String sell_sharp = 'sell_sharp'; + static const String send = 'send'; + static const String send_and_archive = 'send_and_archive'; + static const String send_and_archive_outlined = 'send_and_archive_outlined'; + static const String send_and_archive_rounded = 'send_and_archive_rounded'; + static const String send_and_archive_sharp = 'send_and_archive_sharp'; + static const String send_outlined = 'send_outlined'; + static const String send_rounded = 'send_rounded'; + static const String send_sharp = 'send_sharp'; + static const String send_time_extension = 'send_time_extension'; + static const String send_time_extension_outlined = + 'send_time_extension_outlined'; + static const String send_time_extension_rounded = + 'send_time_extension_rounded'; + static const String send_time_extension_sharp = 'send_time_extension_sharp'; + static const String send_to_mobile = 'send_to_mobile'; + static const String send_to_mobile_outlined = 'send_to_mobile_outlined'; + static const String send_to_mobile_rounded = 'send_to_mobile_rounded'; + static const String send_to_mobile_sharp = 'send_to_mobile_sharp'; + static const String sensor_door = 'sensor_door'; + static const String sensor_door_outlined = 'sensor_door_outlined'; + static const String sensor_door_rounded = 'sensor_door_rounded'; + static const String sensor_door_sharp = 'sensor_door_sharp'; + static const String sensor_occupied = 'sensor_occupied'; + static const String sensor_occupied_outlined = 'sensor_occupied_outlined'; + static const String sensor_occupied_rounded = 'sensor_occupied_rounded'; + static const String sensor_occupied_sharp = 'sensor_occupied_sharp'; + static const String sensor_window = 'sensor_window'; + static const String sensor_window_outlined = 'sensor_window_outlined'; + static const String sensor_window_rounded = 'sensor_window_rounded'; + static const String sensor_window_sharp = 'sensor_window_sharp'; + static const String sensors = 'sensors'; + static const String sensors_off = 'sensors_off'; + static const String sensors_off_outlined = 'sensors_off_outlined'; + static const String sensors_off_rounded = 'sensors_off_rounded'; + static const String sensors_off_sharp = 'sensors_off_sharp'; + static const String sensors_outlined = 'sensors_outlined'; + static const String sensors_rounded = 'sensors_rounded'; + static const String sensors_sharp = 'sensors_sharp'; + static const String sentiment_dissatisfied = 'sentiment_dissatisfied'; + static const String sentiment_dissatisfied_outlined = + 'sentiment_dissatisfied_outlined'; + static const String sentiment_dissatisfied_rounded = + 'sentiment_dissatisfied_rounded'; + static const String sentiment_dissatisfied_sharp = + 'sentiment_dissatisfied_sharp'; + static const String sentiment_neutral = 'sentiment_neutral'; + static const String sentiment_neutral_outlined = 'sentiment_neutral_outlined'; + static const String sentiment_neutral_rounded = 'sentiment_neutral_rounded'; + static const String sentiment_neutral_sharp = 'sentiment_neutral_sharp'; + static const String sentiment_satisfied = 'sentiment_satisfied'; + static const String sentiment_satisfied_alt = 'sentiment_satisfied_alt'; + static const String sentiment_satisfied_alt_outlined = + 'sentiment_satisfied_alt_outlined'; + static const String sentiment_satisfied_alt_rounded = + 'sentiment_satisfied_alt_rounded'; + static const String sentiment_satisfied_alt_sharp = + 'sentiment_satisfied_alt_sharp'; + static const String sentiment_satisfied_outlined = + 'sentiment_satisfied_outlined'; + static const String sentiment_satisfied_rounded = + 'sentiment_satisfied_rounded'; + static const String sentiment_satisfied_sharp = 'sentiment_satisfied_sharp'; + static const String sentiment_very_dissatisfied = + 'sentiment_very_dissatisfied'; + static const String sentiment_very_dissatisfied_outlined = + 'sentiment_very_dissatisfied_outlined'; + static const String sentiment_very_dissatisfied_rounded = + 'sentiment_very_dissatisfied_rounded'; + static const String sentiment_very_dissatisfied_sharp = + 'sentiment_very_dissatisfied_sharp'; + static const String sentiment_very_satisfied = 'sentiment_very_satisfied'; + static const String sentiment_very_satisfied_outlined = + 'sentiment_very_satisfied_outlined'; + static const String sentiment_very_satisfied_rounded = + 'sentiment_very_satisfied_rounded'; + static const String sentiment_very_satisfied_sharp = + 'sentiment_very_satisfied_sharp'; + static const String set_meal = 'set_meal'; + static const String set_meal_outlined = 'set_meal_outlined'; + static const String set_meal_rounded = 'set_meal_rounded'; + static const String set_meal_sharp = 'set_meal_sharp'; + static const String settings = 'settings'; + static const String settings_accessibility = 'settings_accessibility'; + static const String settings_accessibility_outlined = + 'settings_accessibility_outlined'; + static const String settings_accessibility_rounded = + 'settings_accessibility_rounded'; + static const String settings_accessibility_sharp = + 'settings_accessibility_sharp'; + static const String settings_applications = 'settings_applications'; + static const String settings_applications_outlined = + 'settings_applications_outlined'; + static const String settings_applications_rounded = + 'settings_applications_rounded'; + static const String settings_applications_sharp = + 'settings_applications_sharp'; + static const String settings_backup_restore = 'settings_backup_restore'; + static const String settings_backup_restore_outlined = + 'settings_backup_restore_outlined'; + static const String settings_backup_restore_rounded = + 'settings_backup_restore_rounded'; + static const String settings_backup_restore_sharp = + 'settings_backup_restore_sharp'; + static const String settings_bluetooth = 'settings_bluetooth'; + static const String settings_bluetooth_outlined = + 'settings_bluetooth_outlined'; + static const String settings_bluetooth_rounded = 'settings_bluetooth_rounded'; + static const String settings_bluetooth_sharp = 'settings_bluetooth_sharp'; + static const String settings_brightness = 'settings_brightness'; + static const String settings_brightness_outlined = + 'settings_brightness_outlined'; + static const String settings_brightness_rounded = + 'settings_brightness_rounded'; + static const String settings_brightness_sharp = 'settings_brightness_sharp'; + static const String settings_cell = 'settings_cell'; + static const String settings_cell_outlined = 'settings_cell_outlined'; + static const String settings_cell_rounded = 'settings_cell_rounded'; + static const String settings_cell_sharp = 'settings_cell_sharp'; + static const String settings_display = 'settings_display'; + static const String settings_display_outlined = 'settings_display_outlined'; + static const String settings_display_rounded = 'settings_display_rounded'; + static const String settings_display_sharp = 'settings_display_sharp'; + static const String settings_ethernet = 'settings_ethernet'; + static const String settings_ethernet_outlined = 'settings_ethernet_outlined'; + static const String settings_ethernet_rounded = 'settings_ethernet_rounded'; + static const String settings_ethernet_sharp = 'settings_ethernet_sharp'; + static const String settings_input_antenna = 'settings_input_antenna'; + static const String settings_input_antenna_outlined = + 'settings_input_antenna_outlined'; + static const String settings_input_antenna_rounded = + 'settings_input_antenna_rounded'; + static const String settings_input_antenna_sharp = + 'settings_input_antenna_sharp'; + static const String settings_input_component = 'settings_input_component'; + static const String settings_input_component_outlined = + 'settings_input_component_outlined'; + static const String settings_input_component_rounded = + 'settings_input_component_rounded'; + static const String settings_input_component_sharp = + 'settings_input_component_sharp'; + static const String settings_input_composite = 'settings_input_composite'; + static const String settings_input_composite_outlined = + 'settings_input_composite_outlined'; + static const String settings_input_composite_rounded = + 'settings_input_composite_rounded'; + static const String settings_input_composite_sharp = + 'settings_input_composite_sharp'; + static const String settings_input_hdmi = 'settings_input_hdmi'; + static const String settings_input_hdmi_outlined = + 'settings_input_hdmi_outlined'; + static const String settings_input_hdmi_rounded = + 'settings_input_hdmi_rounded'; + static const String settings_input_hdmi_sharp = 'settings_input_hdmi_sharp'; + static const String settings_input_svideo = 'settings_input_svideo'; + static const String settings_input_svideo_outlined = + 'settings_input_svideo_outlined'; + static const String settings_input_svideo_rounded = + 'settings_input_svideo_rounded'; + static const String settings_input_svideo_sharp = + 'settings_input_svideo_sharp'; + static const String settings_outlined = 'settings_outlined'; + static const String settings_overscan = 'settings_overscan'; + static const String settings_overscan_outlined = 'settings_overscan_outlined'; + static const String settings_overscan_rounded = 'settings_overscan_rounded'; + static const String settings_overscan_sharp = 'settings_overscan_sharp'; + static const String settings_phone = 'settings_phone'; + static const String settings_phone_outlined = 'settings_phone_outlined'; + static const String settings_phone_rounded = 'settings_phone_rounded'; + static const String settings_phone_sharp = 'settings_phone_sharp'; + static const String settings_power = 'settings_power'; + static const String settings_power_outlined = 'settings_power_outlined'; + static const String settings_power_rounded = 'settings_power_rounded'; + static const String settings_power_sharp = 'settings_power_sharp'; + static const String settings_remote = 'settings_remote'; + static const String settings_remote_outlined = 'settings_remote_outlined'; + static const String settings_remote_rounded = 'settings_remote_rounded'; + static const String settings_remote_sharp = 'settings_remote_sharp'; + static const String settings_rounded = 'settings_rounded'; + static const String settings_sharp = 'settings_sharp'; + static const String settings_suggest = 'settings_suggest'; + static const String settings_suggest_outlined = 'settings_suggest_outlined'; + static const String settings_suggest_rounded = 'settings_suggest_rounded'; + static const String settings_suggest_sharp = 'settings_suggest_sharp'; + static const String settings_system_daydream = 'settings_system_daydream'; + static const String settings_system_daydream_outlined = + 'settings_system_daydream_outlined'; + static const String settings_system_daydream_rounded = + 'settings_system_daydream_rounded'; + static const String settings_system_daydream_sharp = + 'settings_system_daydream_sharp'; + static const String settings_voice = 'settings_voice'; + static const String settings_voice_outlined = 'settings_voice_outlined'; + static const String settings_voice_rounded = 'settings_voice_rounded'; + static const String settings_voice_sharp = 'settings_voice_sharp'; + static const String seven_k = 'seven_k'; + static const String seven_k_outlined = 'seven_k_outlined'; + static const String seven_k_plus = 'seven_k_plus'; + static const String seven_k_plus_outlined = 'seven_k_plus_outlined'; + static const String seven_k_plus_rounded = 'seven_k_plus_rounded'; + static const String seven_k_plus_sharp = 'seven_k_plus_sharp'; + static const String seven_k_rounded = 'seven_k_rounded'; + static const String seven_k_sharp = 'seven_k_sharp'; + static const String seven_mp = 'seven_mp'; + static const String seven_mp_outlined = 'seven_mp_outlined'; + static const String seven_mp_rounded = 'seven_mp_rounded'; + static const String seven_mp_sharp = 'seven_mp_sharp'; + static const String seventeen_mp = 'seventeen_mp'; + static const String seventeen_mp_outlined = 'seventeen_mp_outlined'; + static const String seventeen_mp_rounded = 'seventeen_mp_rounded'; + static const String seventeen_mp_sharp = 'seventeen_mp_sharp'; + static const String severe_cold = 'severe_cold'; + static const String severe_cold_outlined = 'severe_cold_outlined'; + static const String severe_cold_rounded = 'severe_cold_rounded'; + static const String severe_cold_sharp = 'severe_cold_sharp'; + static const String share = 'share'; + static const String share_arrival_time = 'share_arrival_time'; + static const String share_arrival_time_outlined = + 'share_arrival_time_outlined'; + static const String share_arrival_time_rounded = 'share_arrival_time_rounded'; + static const String share_arrival_time_sharp = 'share_arrival_time_sharp'; + static const String share_location = 'share_location'; + static const String share_location_outlined = 'share_location_outlined'; + static const String share_location_rounded = 'share_location_rounded'; + static const String share_location_sharp = 'share_location_sharp'; + static const String share_outlined = 'share_outlined'; + static const String share_rounded = 'share_rounded'; + static const String share_sharp = 'share_sharp'; + static const String shield = 'shield'; + static const String shield_moon = 'shield_moon'; + static const String shield_moon_outlined = 'shield_moon_outlined'; + static const String shield_moon_rounded = 'shield_moon_rounded'; + static const String shield_moon_sharp = 'shield_moon_sharp'; + static const String shield_outlined = 'shield_outlined'; + static const String shield_rounded = 'shield_rounded'; + static const String shield_sharp = 'shield_sharp'; + static const String shop = 'shop'; + static const String shop_2 = 'shop_2'; + static const String shop_2_outlined = 'shop_2_outlined'; + static const String shop_2_rounded = 'shop_2_rounded'; + static const String shop_2_sharp = 'shop_2_sharp'; + static const String shop_outlined = 'shop_outlined'; + static const String shop_rounded = 'shop_rounded'; + static const String shop_sharp = 'shop_sharp'; + static const String shop_two = 'shop_two'; + static const String shop_two_outlined = 'shop_two_outlined'; + static const String shop_two_rounded = 'shop_two_rounded'; + static const String shop_two_sharp = 'shop_two_sharp'; + static const String shopify = 'shopify'; + static const String shopify_outlined = 'shopify_outlined'; + static const String shopify_rounded = 'shopify_rounded'; + static const String shopify_sharp = 'shopify_sharp'; + static const String shopping_bag = 'shopping_bag'; + static const String shopping_bag_outlined = 'shopping_bag_outlined'; + static const String shopping_bag_rounded = 'shopping_bag_rounded'; + static const String shopping_bag_sharp = 'shopping_bag_sharp'; + static const String shopping_basket = 'shopping_basket'; + static const String shopping_basket_outlined = 'shopping_basket_outlined'; + static const String shopping_basket_rounded = 'shopping_basket_rounded'; + static const String shopping_basket_sharp = 'shopping_basket_sharp'; + static const String shopping_cart = 'shopping_cart'; + static const String shopping_cart_checkout = 'shopping_cart_checkout'; + static const String shopping_cart_checkout_outlined = + 'shopping_cart_checkout_outlined'; + static const String shopping_cart_checkout_rounded = + 'shopping_cart_checkout_rounded'; + static const String shopping_cart_checkout_sharp = + 'shopping_cart_checkout_sharp'; + static const String shopping_cart_outlined = 'shopping_cart_outlined'; + static const String shopping_cart_rounded = 'shopping_cart_rounded'; + static const String shopping_cart_sharp = 'shopping_cart_sharp'; + static const String short_text = 'short_text'; + static const String short_text_outlined = 'short_text_outlined'; + static const String short_text_rounded = 'short_text_rounded'; + static const String short_text_sharp = 'short_text_sharp'; + static const String shortcut = 'shortcut'; + static const String shortcut_outlined = 'shortcut_outlined'; + static const String shortcut_rounded = 'shortcut_rounded'; + static const String shortcut_sharp = 'shortcut_sharp'; + static const String show_chart = 'show_chart'; + static const String show_chart_outlined = 'show_chart_outlined'; + static const String show_chart_rounded = 'show_chart_rounded'; + static const String show_chart_sharp = 'show_chart_sharp'; + static const String shower = 'shower'; + static const String shower_outlined = 'shower_outlined'; + static const String shower_rounded = 'shower_rounded'; + static const String shower_sharp = 'shower_sharp'; + static const String shuffle = 'shuffle'; + static const String shuffle_on = 'shuffle_on'; + static const String shuffle_on_outlined = 'shuffle_on_outlined'; + static const String shuffle_on_rounded = 'shuffle_on_rounded'; + static const String shuffle_on_sharp = 'shuffle_on_sharp'; + static const String shuffle_outlined = 'shuffle_outlined'; + static const String shuffle_rounded = 'shuffle_rounded'; + static const String shuffle_sharp = 'shuffle_sharp'; + static const String shutter_speed = 'shutter_speed'; + static const String shutter_speed_outlined = 'shutter_speed_outlined'; + static const String shutter_speed_rounded = 'shutter_speed_rounded'; + static const String shutter_speed_sharp = 'shutter_speed_sharp'; + static const String sick = 'sick'; + static const String sick_outlined = 'sick_outlined'; + static const String sick_rounded = 'sick_rounded'; + static const String sick_sharp = 'sick_sharp'; + static const String sign_language = 'sign_language'; + static const String sign_language_outlined = 'sign_language_outlined'; + static const String sign_language_rounded = 'sign_language_rounded'; + static const String sign_language_sharp = 'sign_language_sharp'; + static const String signal_cellular_0_bar = 'signal_cellular_0_bar'; + static const String signal_cellular_0_bar_outlined = + 'signal_cellular_0_bar_outlined'; + static const String signal_cellular_0_bar_rounded = + 'signal_cellular_0_bar_rounded'; + static const String signal_cellular_0_bar_sharp = + 'signal_cellular_0_bar_sharp'; + static const String signal_cellular_4_bar = 'signal_cellular_4_bar'; + static const String signal_cellular_4_bar_outlined = + 'signal_cellular_4_bar_outlined'; + static const String signal_cellular_4_bar_rounded = + 'signal_cellular_4_bar_rounded'; + static const String signal_cellular_4_bar_sharp = + 'signal_cellular_4_bar_sharp'; + static const String signal_cellular_alt = 'signal_cellular_alt'; + static const String signal_cellular_alt_1_bar = 'signal_cellular_alt_1_bar'; + static const String signal_cellular_alt_1_bar_outlined = + 'signal_cellular_alt_1_bar_outlined'; + static const String signal_cellular_alt_1_bar_rounded = + 'signal_cellular_alt_1_bar_rounded'; + static const String signal_cellular_alt_1_bar_sharp = + 'signal_cellular_alt_1_bar_sharp'; + static const String signal_cellular_alt_2_bar = 'signal_cellular_alt_2_bar'; + static const String signal_cellular_alt_2_bar_outlined = + 'signal_cellular_alt_2_bar_outlined'; + static const String signal_cellular_alt_2_bar_rounded = + 'signal_cellular_alt_2_bar_rounded'; + static const String signal_cellular_alt_2_bar_sharp = + 'signal_cellular_alt_2_bar_sharp'; + static const String signal_cellular_alt_outlined = + 'signal_cellular_alt_outlined'; + static const String signal_cellular_alt_rounded = + 'signal_cellular_alt_rounded'; + static const String signal_cellular_alt_sharp = 'signal_cellular_alt_sharp'; + static const String signal_cellular_connected_no_internet_0_bar = + 'signal_cellular_connected_no_internet_0_bar'; + static const String signal_cellular_connected_no_internet_0_bar_outlined = + 'signal_cellular_connected_no_internet_0_bar_outlined'; + static const String signal_cellular_connected_no_internet_0_bar_rounded = + 'signal_cellular_connected_no_internet_0_bar_rounded'; + static const String signal_cellular_connected_no_internet_0_bar_sharp = + 'signal_cellular_connected_no_internet_0_bar_sharp'; + static const String signal_cellular_connected_no_internet_4_bar = + 'signal_cellular_connected_no_internet_4_bar'; + static const String signal_cellular_connected_no_internet_4_bar_outlined = + 'signal_cellular_connected_no_internet_4_bar_outlined'; + static const String signal_cellular_connected_no_internet_4_bar_rounded = + 'signal_cellular_connected_no_internet_4_bar_rounded'; + static const String signal_cellular_connected_no_internet_4_bar_sharp = + 'signal_cellular_connected_no_internet_4_bar_sharp'; + static const String signal_cellular_no_sim = 'signal_cellular_no_sim'; + static const String signal_cellular_no_sim_outlined = + 'signal_cellular_no_sim_outlined'; + static const String signal_cellular_no_sim_rounded = + 'signal_cellular_no_sim_rounded'; + static const String signal_cellular_no_sim_sharp = + 'signal_cellular_no_sim_sharp'; + static const String signal_cellular_nodata = 'signal_cellular_nodata'; + static const String signal_cellular_nodata_outlined = + 'signal_cellular_nodata_outlined'; + static const String signal_cellular_nodata_rounded = + 'signal_cellular_nodata_rounded'; + static const String signal_cellular_nodata_sharp = + 'signal_cellular_nodata_sharp'; + static const String signal_cellular_null = 'signal_cellular_null'; + static const String signal_cellular_null_outlined = + 'signal_cellular_null_outlined'; + static const String signal_cellular_null_rounded = + 'signal_cellular_null_rounded'; + static const String signal_cellular_null_sharp = 'signal_cellular_null_sharp'; + static const String signal_cellular_off = 'signal_cellular_off'; + static const String signal_cellular_off_outlined = + 'signal_cellular_off_outlined'; + static const String signal_cellular_off_rounded = + 'signal_cellular_off_rounded'; + static const String signal_cellular_off_sharp = 'signal_cellular_off_sharp'; + static const String signal_wifi_0_bar = 'signal_wifi_0_bar'; + static const String signal_wifi_0_bar_outlined = 'signal_wifi_0_bar_outlined'; + static const String signal_wifi_0_bar_rounded = 'signal_wifi_0_bar_rounded'; + static const String signal_wifi_0_bar_sharp = 'signal_wifi_0_bar_sharp'; + static const String signal_wifi_4_bar = 'signal_wifi_4_bar'; + static const String signal_wifi_4_bar_lock = 'signal_wifi_4_bar_lock'; + static const String signal_wifi_4_bar_lock_outlined = + 'signal_wifi_4_bar_lock_outlined'; + static const String signal_wifi_4_bar_lock_rounded = + 'signal_wifi_4_bar_lock_rounded'; + static const String signal_wifi_4_bar_lock_sharp = + 'signal_wifi_4_bar_lock_sharp'; + static const String signal_wifi_4_bar_outlined = 'signal_wifi_4_bar_outlined'; + static const String signal_wifi_4_bar_rounded = 'signal_wifi_4_bar_rounded'; + static const String signal_wifi_4_bar_sharp = 'signal_wifi_4_bar_sharp'; + static const String signal_wifi_bad = 'signal_wifi_bad'; + static const String signal_wifi_bad_outlined = 'signal_wifi_bad_outlined'; + static const String signal_wifi_bad_rounded = 'signal_wifi_bad_rounded'; + static const String signal_wifi_bad_sharp = 'signal_wifi_bad_sharp'; + static const String signal_wifi_connected_no_internet_4 = + 'signal_wifi_connected_no_internet_4'; + static const String signal_wifi_connected_no_internet_4_outlined = + 'signal_wifi_connected_no_internet_4_outlined'; + static const String signal_wifi_connected_no_internet_4_rounded = + 'signal_wifi_connected_no_internet_4_rounded'; + static const String signal_wifi_connected_no_internet_4_sharp = + 'signal_wifi_connected_no_internet_4_sharp'; + static const String signal_wifi_off = 'signal_wifi_off'; + static const String signal_wifi_off_outlined = 'signal_wifi_off_outlined'; + static const String signal_wifi_off_rounded = 'signal_wifi_off_rounded'; + static const String signal_wifi_off_sharp = 'signal_wifi_off_sharp'; + static const String signal_wifi_statusbar_4_bar = + 'signal_wifi_statusbar_4_bar'; + static const String signal_wifi_statusbar_4_bar_outlined = + 'signal_wifi_statusbar_4_bar_outlined'; + static const String signal_wifi_statusbar_4_bar_rounded = + 'signal_wifi_statusbar_4_bar_rounded'; + static const String signal_wifi_statusbar_4_bar_sharp = + 'signal_wifi_statusbar_4_bar_sharp'; + static const String signal_wifi_statusbar_connected_no_internet_4 = + 'signal_wifi_statusbar_connected_no_internet_4'; + static const String signal_wifi_statusbar_connected_no_internet_4_outlined = + 'signal_wifi_statusbar_connected_no_internet_4_outlined'; + static const String signal_wifi_statusbar_connected_no_internet_4_rounded = + 'signal_wifi_statusbar_connected_no_internet_4_rounded'; + static const String signal_wifi_statusbar_connected_no_internet_4_sharp = + 'signal_wifi_statusbar_connected_no_internet_4_sharp'; + static const String signal_wifi_statusbar_null = 'signal_wifi_statusbar_null'; + static const String signal_wifi_statusbar_null_outlined = + 'signal_wifi_statusbar_null_outlined'; + static const String signal_wifi_statusbar_null_rounded = + 'signal_wifi_statusbar_null_rounded'; + static const String signal_wifi_statusbar_null_sharp = + 'signal_wifi_statusbar_null_sharp'; + static const String signpost = 'signpost'; + static const String signpost_outlined = 'signpost_outlined'; + static const String signpost_rounded = 'signpost_rounded'; + static const String signpost_sharp = 'signpost_sharp'; + static const String sim_card = 'sim_card'; + static const String sim_card_alert = 'sim_card_alert'; + static const String sim_card_alert_outlined = 'sim_card_alert_outlined'; + static const String sim_card_alert_rounded = 'sim_card_alert_rounded'; + static const String sim_card_alert_sharp = 'sim_card_alert_sharp'; + static const String sim_card_download = 'sim_card_download'; + static const String sim_card_download_outlined = 'sim_card_download_outlined'; + static const String sim_card_download_rounded = 'sim_card_download_rounded'; + static const String sim_card_download_sharp = 'sim_card_download_sharp'; + static const String sim_card_outlined = 'sim_card_outlined'; + static const String sim_card_rounded = 'sim_card_rounded'; + static const String sim_card_sharp = 'sim_card_sharp'; + static const String single_bed = 'single_bed'; + static const String single_bed_outlined = 'single_bed_outlined'; + static const String single_bed_rounded = 'single_bed_rounded'; + static const String single_bed_sharp = 'single_bed_sharp'; + static const String sip = 'sip'; + static const String sip_outlined = 'sip_outlined'; + static const String sip_rounded = 'sip_rounded'; + static const String sip_sharp = 'sip_sharp'; + static const String six_ft_apart = 'six_ft_apart'; + static const String six_ft_apart_outlined = 'six_ft_apart_outlined'; + static const String six_ft_apart_rounded = 'six_ft_apart_rounded'; + static const String six_ft_apart_sharp = 'six_ft_apart_sharp'; + static const String six_k = 'six_k'; + static const String six_k_outlined = 'six_k_outlined'; + static const String six_k_plus = 'six_k_plus'; + static const String six_k_plus_outlined = 'six_k_plus_outlined'; + static const String six_k_plus_rounded = 'six_k_plus_rounded'; + static const String six_k_plus_sharp = 'six_k_plus_sharp'; + static const String six_k_rounded = 'six_k_rounded'; + static const String six_k_sharp = 'six_k_sharp'; + static const String six_mp = 'six_mp'; + static const String six_mp_outlined = 'six_mp_outlined'; + static const String six_mp_rounded = 'six_mp_rounded'; + static const String six_mp_sharp = 'six_mp_sharp'; + static const String sixteen_mp = 'sixteen_mp'; + static const String sixteen_mp_outlined = 'sixteen_mp_outlined'; + static const String sixteen_mp_rounded = 'sixteen_mp_rounded'; + static const String sixteen_mp_sharp = 'sixteen_mp_sharp'; + static const String sixty_fps = 'sixty_fps'; + static const String sixty_fps_outlined = 'sixty_fps_outlined'; + static const String sixty_fps_rounded = 'sixty_fps_rounded'; + static const String sixty_fps_select = 'sixty_fps_select'; + static const String sixty_fps_select_outlined = 'sixty_fps_select_outlined'; + static const String sixty_fps_select_rounded = 'sixty_fps_select_rounded'; + static const String sixty_fps_select_sharp = 'sixty_fps_select_sharp'; + static const String sixty_fps_sharp = 'sixty_fps_sharp'; + static const String skateboarding = 'skateboarding'; + static const String skateboarding_outlined = 'skateboarding_outlined'; + static const String skateboarding_rounded = 'skateboarding_rounded'; + static const String skateboarding_sharp = 'skateboarding_sharp'; + static const String skip_next = 'skip_next'; + static const String skip_next_outlined = 'skip_next_outlined'; + static const String skip_next_rounded = 'skip_next_rounded'; + static const String skip_next_sharp = 'skip_next_sharp'; + static const String skip_previous = 'skip_previous'; + static const String skip_previous_outlined = 'skip_previous_outlined'; + static const String skip_previous_rounded = 'skip_previous_rounded'; + static const String skip_previous_sharp = 'skip_previous_sharp'; + static const String sledding = 'sledding'; + static const String sledding_outlined = 'sledding_outlined'; + static const String sledding_rounded = 'sledding_rounded'; + static const String sledding_sharp = 'sledding_sharp'; + static const String slideshow = 'slideshow'; + static const String slideshow_outlined = 'slideshow_outlined'; + static const String slideshow_rounded = 'slideshow_rounded'; + static const String slideshow_sharp = 'slideshow_sharp'; + static const String slow_motion_video = 'slow_motion_video'; + static const String slow_motion_video_outlined = 'slow_motion_video_outlined'; + static const String slow_motion_video_rounded = 'slow_motion_video_rounded'; + static const String slow_motion_video_sharp = 'slow_motion_video_sharp'; + static const String smart_button = 'smart_button'; + static const String smart_button_outlined = 'smart_button_outlined'; + static const String smart_button_rounded = 'smart_button_rounded'; + static const String smart_button_sharp = 'smart_button_sharp'; + static const String smart_display = 'smart_display'; + static const String smart_display_outlined = 'smart_display_outlined'; + static const String smart_display_rounded = 'smart_display_rounded'; + static const String smart_display_sharp = 'smart_display_sharp'; + static const String smart_screen = 'smart_screen'; + static const String smart_screen_outlined = 'smart_screen_outlined'; + static const String smart_screen_rounded = 'smart_screen_rounded'; + static const String smart_screen_sharp = 'smart_screen_sharp'; + static const String smart_toy = 'smart_toy'; + static const String smart_toy_outlined = 'smart_toy_outlined'; + static const String smart_toy_rounded = 'smart_toy_rounded'; + static const String smart_toy_sharp = 'smart_toy_sharp'; + static const String smartphone = 'smartphone'; + static const String smartphone_outlined = 'smartphone_outlined'; + static const String smartphone_rounded = 'smartphone_rounded'; + static const String smartphone_sharp = 'smartphone_sharp'; + static const String smoke_free = 'smoke_free'; + static const String smoke_free_outlined = 'smoke_free_outlined'; + static const String smoke_free_rounded = 'smoke_free_rounded'; + static const String smoke_free_sharp = 'smoke_free_sharp'; + static const String smoking_rooms = 'smoking_rooms'; + static const String smoking_rooms_outlined = 'smoking_rooms_outlined'; + static const String smoking_rooms_rounded = 'smoking_rooms_rounded'; + static const String smoking_rooms_sharp = 'smoking_rooms_sharp'; + static const String sms = 'sms'; + static const String sms_failed = 'sms_failed'; + static const String sms_failed_outlined = 'sms_failed_outlined'; + static const String sms_failed_rounded = 'sms_failed_rounded'; + static const String sms_failed_sharp = 'sms_failed_sharp'; + static const String sms_outlined = 'sms_outlined'; + static const String sms_rounded = 'sms_rounded'; + static const String sms_sharp = 'sms_sharp'; + static const String snapchat = 'snapchat'; + static const String snapchat_outlined = 'snapchat_outlined'; + static const String snapchat_rounded = 'snapchat_rounded'; + static const String snapchat_sharp = 'snapchat_sharp'; + static const String snippet_folder = 'snippet_folder'; + static const String snippet_folder_outlined = 'snippet_folder_outlined'; + static const String snippet_folder_rounded = 'snippet_folder_rounded'; + static const String snippet_folder_sharp = 'snippet_folder_sharp'; + static const String snooze = 'snooze'; + static const String snooze_outlined = 'snooze_outlined'; + static const String snooze_rounded = 'snooze_rounded'; + static const String snooze_sharp = 'snooze_sharp'; + static const String snowboarding = 'snowboarding'; + static const String snowboarding_outlined = 'snowboarding_outlined'; + static const String snowboarding_rounded = 'snowboarding_rounded'; + static const String snowboarding_sharp = 'snowboarding_sharp'; + static const String snowing = 'snowing'; + static const String snowmobile = 'snowmobile'; + static const String snowmobile_outlined = 'snowmobile_outlined'; + static const String snowmobile_rounded = 'snowmobile_rounded'; + static const String snowmobile_sharp = 'snowmobile_sharp'; + static const String snowshoeing = 'snowshoeing'; + static const String snowshoeing_outlined = 'snowshoeing_outlined'; + static const String snowshoeing_rounded = 'snowshoeing_rounded'; + static const String snowshoeing_sharp = 'snowshoeing_sharp'; + static const String soap = 'soap'; + static const String soap_outlined = 'soap_outlined'; + static const String soap_rounded = 'soap_rounded'; + static const String soap_sharp = 'soap_sharp'; + static const String social_distance = 'social_distance'; + static const String social_distance_outlined = 'social_distance_outlined'; + static const String social_distance_rounded = 'social_distance_rounded'; + static const String social_distance_sharp = 'social_distance_sharp'; + static const String solar_power = 'solar_power'; + static const String solar_power_outlined = 'solar_power_outlined'; + static const String solar_power_rounded = 'solar_power_rounded'; + static const String solar_power_sharp = 'solar_power_sharp'; + static const String sort = 'sort'; + static const String sort_by_alpha = 'sort_by_alpha'; + static const String sort_by_alpha_outlined = 'sort_by_alpha_outlined'; + static const String sort_by_alpha_rounded = 'sort_by_alpha_rounded'; + static const String sort_by_alpha_sharp = 'sort_by_alpha_sharp'; + static const String sort_outlined = 'sort_outlined'; + static const String sort_rounded = 'sort_rounded'; + static const String sort_sharp = 'sort_sharp'; + static const String sos = 'sos'; + static const String sos_outlined = 'sos_outlined'; + static const String sos_rounded = 'sos_rounded'; + static const String sos_sharp = 'sos_sharp'; + static const String soup_kitchen = 'soup_kitchen'; + static const String soup_kitchen_outlined = 'soup_kitchen_outlined'; + static const String soup_kitchen_rounded = 'soup_kitchen_rounded'; + static const String soup_kitchen_sharp = 'soup_kitchen_sharp'; + static const String source = 'source'; + static const String source_outlined = 'source_outlined'; + static const String source_rounded = 'source_rounded'; + static const String source_sharp = 'source_sharp'; + static const String south = 'south'; + static const String south_america = 'south_america'; + static const String south_america_outlined = 'south_america_outlined'; + static const String south_america_rounded = 'south_america_rounded'; + static const String south_america_sharp = 'south_america_sharp'; + static const String south_east = 'south_east'; + static const String south_east_outlined = 'south_east_outlined'; + static const String south_east_rounded = 'south_east_rounded'; + static const String south_east_sharp = 'south_east_sharp'; + static const String south_outlined = 'south_outlined'; + static const String south_rounded = 'south_rounded'; + static const String south_sharp = 'south_sharp'; + static const String south_west = 'south_west'; + static const String south_west_outlined = 'south_west_outlined'; + static const String south_west_rounded = 'south_west_rounded'; + static const String south_west_sharp = 'south_west_sharp'; + static const String spa = 'spa'; + static const String spa_outlined = 'spa_outlined'; + static const String spa_rounded = 'spa_rounded'; + static const String spa_sharp = 'spa_sharp'; + static const String space_bar = 'space_bar'; + static const String space_bar_outlined = 'space_bar_outlined'; + static const String space_bar_rounded = 'space_bar_rounded'; + static const String space_bar_sharp = 'space_bar_sharp'; + static const String space_dashboard = 'space_dashboard'; + static const String space_dashboard_outlined = 'space_dashboard_outlined'; + static const String space_dashboard_rounded = 'space_dashboard_rounded'; + static const String space_dashboard_sharp = 'space_dashboard_sharp'; + static const String spatial_audio = 'spatial_audio'; + static const String spatial_audio_off = 'spatial_audio_off'; + static const String spatial_audio_off_outlined = 'spatial_audio_off_outlined'; + static const String spatial_audio_off_rounded = 'spatial_audio_off_rounded'; + static const String spatial_audio_off_sharp = 'spatial_audio_off_sharp'; + static const String spatial_audio_outlined = 'spatial_audio_outlined'; + static const String spatial_audio_rounded = 'spatial_audio_rounded'; + static const String spatial_audio_sharp = 'spatial_audio_sharp'; + static const String spatial_tracking = 'spatial_tracking'; + static const String spatial_tracking_outlined = 'spatial_tracking_outlined'; + static const String spatial_tracking_rounded = 'spatial_tracking_rounded'; + static const String spatial_tracking_sharp = 'spatial_tracking_sharp'; + static const String speaker = 'speaker'; + static const String speaker_group = 'speaker_group'; + static const String speaker_group_outlined = 'speaker_group_outlined'; + static const String speaker_group_rounded = 'speaker_group_rounded'; + static const String speaker_group_sharp = 'speaker_group_sharp'; + static const String speaker_notes = 'speaker_notes'; + static const String speaker_notes_off = 'speaker_notes_off'; + static const String speaker_notes_off_outlined = 'speaker_notes_off_outlined'; + static const String speaker_notes_off_rounded = 'speaker_notes_off_rounded'; + static const String speaker_notes_off_sharp = 'speaker_notes_off_sharp'; + static const String speaker_notes_outlined = 'speaker_notes_outlined'; + static const String speaker_notes_rounded = 'speaker_notes_rounded'; + static const String speaker_notes_sharp = 'speaker_notes_sharp'; + static const String speaker_outlined = 'speaker_outlined'; + static const String speaker_phone = 'speaker_phone'; + static const String speaker_phone_outlined = 'speaker_phone_outlined'; + static const String speaker_phone_rounded = 'speaker_phone_rounded'; + static const String speaker_phone_sharp = 'speaker_phone_sharp'; + static const String speaker_rounded = 'speaker_rounded'; + static const String speaker_sharp = 'speaker_sharp'; + static const String speed = 'speed'; + static const String speed_outlined = 'speed_outlined'; + static const String speed_rounded = 'speed_rounded'; + static const String speed_sharp = 'speed_sharp'; + static const String spellcheck = 'spellcheck'; + static const String spellcheck_outlined = 'spellcheck_outlined'; + static const String spellcheck_rounded = 'spellcheck_rounded'; + static const String spellcheck_sharp = 'spellcheck_sharp'; + static const String splitscreen = 'splitscreen'; + static const String splitscreen_outlined = 'splitscreen_outlined'; + static const String splitscreen_rounded = 'splitscreen_rounded'; + static const String splitscreen_sharp = 'splitscreen_sharp'; + static const String spoke = 'spoke'; + static const String spoke_outlined = 'spoke_outlined'; + static const String spoke_rounded = 'spoke_rounded'; + static const String spoke_sharp = 'spoke_sharp'; + static const String sports = 'sports'; + static const String sports_bar = 'sports_bar'; + static const String sports_bar_outlined = 'sports_bar_outlined'; + static const String sports_bar_rounded = 'sports_bar_rounded'; + static const String sports_bar_sharp = 'sports_bar_sharp'; + static const String sports_baseball = 'sports_baseball'; + static const String sports_baseball_outlined = 'sports_baseball_outlined'; + static const String sports_baseball_rounded = 'sports_baseball_rounded'; + static const String sports_baseball_sharp = 'sports_baseball_sharp'; + static const String sports_basketball = 'sports_basketball'; + static const String sports_basketball_outlined = 'sports_basketball_outlined'; + static const String sports_basketball_rounded = 'sports_basketball_rounded'; + static const String sports_basketball_sharp = 'sports_basketball_sharp'; + static const String sports_cricket = 'sports_cricket'; + static const String sports_cricket_outlined = 'sports_cricket_outlined'; + static const String sports_cricket_rounded = 'sports_cricket_rounded'; + static const String sports_cricket_sharp = 'sports_cricket_sharp'; + static const String sports_esports = 'sports_esports'; + static const String sports_esports_outlined = 'sports_esports_outlined'; + static const String sports_esports_rounded = 'sports_esports_rounded'; + static const String sports_esports_sharp = 'sports_esports_sharp'; + static const String sports_football = 'sports_football'; + static const String sports_football_outlined = 'sports_football_outlined'; + static const String sports_football_rounded = 'sports_football_rounded'; + static const String sports_football_sharp = 'sports_football_sharp'; + static const String sports_golf = 'sports_golf'; + static const String sports_golf_outlined = 'sports_golf_outlined'; + static const String sports_golf_rounded = 'sports_golf_rounded'; + static const String sports_golf_sharp = 'sports_golf_sharp'; + static const String sports_gymnastics = 'sports_gymnastics'; + static const String sports_gymnastics_outlined = 'sports_gymnastics_outlined'; + static const String sports_gymnastics_rounded = 'sports_gymnastics_rounded'; + static const String sports_gymnastics_sharp = 'sports_gymnastics_sharp'; + static const String sports_handball = 'sports_handball'; + static const String sports_handball_outlined = 'sports_handball_outlined'; + static const String sports_handball_rounded = 'sports_handball_rounded'; + static const String sports_handball_sharp = 'sports_handball_sharp'; + static const String sports_hockey = 'sports_hockey'; + static const String sports_hockey_outlined = 'sports_hockey_outlined'; + static const String sports_hockey_rounded = 'sports_hockey_rounded'; + static const String sports_hockey_sharp = 'sports_hockey_sharp'; + static const String sports_kabaddi = 'sports_kabaddi'; + static const String sports_kabaddi_outlined = 'sports_kabaddi_outlined'; + static const String sports_kabaddi_rounded = 'sports_kabaddi_rounded'; + static const String sports_kabaddi_sharp = 'sports_kabaddi_sharp'; + static const String sports_martial_arts = 'sports_martial_arts'; + static const String sports_martial_arts_outlined = + 'sports_martial_arts_outlined'; + static const String sports_martial_arts_rounded = + 'sports_martial_arts_rounded'; + static const String sports_martial_arts_sharp = 'sports_martial_arts_sharp'; + static const String sports_mma = 'sports_mma'; + static const String sports_mma_outlined = 'sports_mma_outlined'; + static const String sports_mma_rounded = 'sports_mma_rounded'; + static const String sports_mma_sharp = 'sports_mma_sharp'; + static const String sports_motorsports = 'sports_motorsports'; + static const String sports_motorsports_outlined = + 'sports_motorsports_outlined'; + static const String sports_motorsports_rounded = 'sports_motorsports_rounded'; + static const String sports_motorsports_sharp = 'sports_motorsports_sharp'; + static const String sports_outlined = 'sports_outlined'; + static const String sports_rounded = 'sports_rounded'; + static const String sports_rugby = 'sports_rugby'; + static const String sports_rugby_outlined = 'sports_rugby_outlined'; + static const String sports_rugby_rounded = 'sports_rugby_rounded'; + static const String sports_rugby_sharp = 'sports_rugby_sharp'; + static const String sports_score = 'sports_score'; + static const String sports_score_outlined = 'sports_score_outlined'; + static const String sports_score_rounded = 'sports_score_rounded'; + static const String sports_score_sharp = 'sports_score_sharp'; + static const String sports_sharp = 'sports_sharp'; + static const String sports_soccer = 'sports_soccer'; + static const String sports_soccer_outlined = 'sports_soccer_outlined'; + static const String sports_soccer_rounded = 'sports_soccer_rounded'; + static const String sports_soccer_sharp = 'sports_soccer_sharp'; + static const String sports_tennis = 'sports_tennis'; + static const String sports_tennis_outlined = 'sports_tennis_outlined'; + static const String sports_tennis_rounded = 'sports_tennis_rounded'; + static const String sports_tennis_sharp = 'sports_tennis_sharp'; + static const String sports_volleyball = 'sports_volleyball'; + static const String sports_volleyball_outlined = 'sports_volleyball_outlined'; + static const String sports_volleyball_rounded = 'sports_volleyball_rounded'; + static const String sports_volleyball_sharp = 'sports_volleyball_sharp'; + static const String square = 'square'; + static const String square_foot = 'square_foot'; + static const String square_foot_outlined = 'square_foot_outlined'; + static const String square_foot_rounded = 'square_foot_rounded'; + static const String square_foot_sharp = 'square_foot_sharp'; + static const String square_outlined = 'square_outlined'; + static const String square_rounded = 'square_rounded'; + static const String square_sharp = 'square_sharp'; + static const String ssid_chart = 'ssid_chart'; + static const String ssid_chart_outlined = 'ssid_chart_outlined'; + static const String ssid_chart_rounded = 'ssid_chart_rounded'; + static const String ssid_chart_sharp = 'ssid_chart_sharp'; + static const String stacked_bar_chart = 'stacked_bar_chart'; + static const String stacked_bar_chart_outlined = 'stacked_bar_chart_outlined'; + static const String stacked_bar_chart_rounded = 'stacked_bar_chart_rounded'; + static const String stacked_bar_chart_sharp = 'stacked_bar_chart_sharp'; + static const String stacked_line_chart = 'stacked_line_chart'; + static const String stacked_line_chart_outlined = + 'stacked_line_chart_outlined'; + static const String stacked_line_chart_rounded = 'stacked_line_chart_rounded'; + static const String stacked_line_chart_sharp = 'stacked_line_chart_sharp'; + static const String stadium = 'stadium'; + static const String stadium_outlined = 'stadium_outlined'; + static const String stadium_rounded = 'stadium_rounded'; + static const String stadium_sharp = 'stadium_sharp'; + static const String stairs = 'stairs'; + static const String stairs_outlined = 'stairs_outlined'; + static const String stairs_rounded = 'stairs_rounded'; + static const String stairs_sharp = 'stairs_sharp'; + static const String star = 'star'; + static const String star_border = 'star_border'; + static const String star_border_outlined = 'star_border_outlined'; + static const String star_border_purple500 = 'star_border_purple500'; + static const String star_border_purple500_outlined = + 'star_border_purple500_outlined'; + static const String star_border_purple500_rounded = + 'star_border_purple500_rounded'; + static const String star_border_purple500_sharp = + 'star_border_purple500_sharp'; + static const String star_border_rounded = 'star_border_rounded'; + static const String star_border_sharp = 'star_border_sharp'; + static const String star_half = 'star_half'; + static const String star_half_outlined = 'star_half_outlined'; + static const String star_half_rounded = 'star_half_rounded'; + static const String star_half_sharp = 'star_half_sharp'; + static const String star_outline = 'star_outline'; + static const String star_outline_outlined = 'star_outline_outlined'; + static const String star_outline_rounded = 'star_outline_rounded'; + static const String star_outline_sharp = 'star_outline_sharp'; + static const String star_outlined = 'star_outlined'; + static const String star_purple500 = 'star_purple500'; + static const String star_purple500_outlined = 'star_purple500_outlined'; + static const String star_purple500_rounded = 'star_purple500_rounded'; + static const String star_purple500_sharp = 'star_purple500_sharp'; + static const String star_rate = 'star_rate'; + static const String star_rate_outlined = 'star_rate_outlined'; + static const String star_rate_rounded = 'star_rate_rounded'; + static const String star_rate_sharp = 'star_rate_sharp'; + static const String star_rounded = 'star_rounded'; + static const String star_sharp = 'star_sharp'; + static const String stars = 'stars'; + static const String stars_outlined = 'stars_outlined'; + static const String stars_rounded = 'stars_rounded'; + static const String stars_sharp = 'stars_sharp'; + static const String start = 'start'; + static const String start_outlined = 'start_outlined'; + static const String start_rounded = 'start_rounded'; + static const String start_sharp = 'start_sharp'; + static const String stay_current_landscape = 'stay_current_landscape'; + static const String stay_current_landscape_outlined = + 'stay_current_landscape_outlined'; + static const String stay_current_landscape_rounded = + 'stay_current_landscape_rounded'; + static const String stay_current_landscape_sharp = + 'stay_current_landscape_sharp'; + static const String stay_current_portrait = 'stay_current_portrait'; + static const String stay_current_portrait_outlined = + 'stay_current_portrait_outlined'; + static const String stay_current_portrait_rounded = + 'stay_current_portrait_rounded'; + static const String stay_current_portrait_sharp = + 'stay_current_portrait_sharp'; + static const String stay_primary_landscape = 'stay_primary_landscape'; + static const String stay_primary_landscape_outlined = + 'stay_primary_landscape_outlined'; + static const String stay_primary_landscape_rounded = + 'stay_primary_landscape_rounded'; + static const String stay_primary_landscape_sharp = + 'stay_primary_landscape_sharp'; + static const String stay_primary_portrait = 'stay_primary_portrait'; + static const String stay_primary_portrait_outlined = + 'stay_primary_portrait_outlined'; + static const String stay_primary_portrait_rounded = + 'stay_primary_portrait_rounded'; + static const String stay_primary_portrait_sharp = + 'stay_primary_portrait_sharp'; + static const String sticky_note_2 = 'sticky_note_2'; + static const String sticky_note_2_outlined = 'sticky_note_2_outlined'; + static const String sticky_note_2_rounded = 'sticky_note_2_rounded'; + static const String sticky_note_2_sharp = 'sticky_note_2_sharp'; + static const String stop = 'stop'; + static const String stop_circle = 'stop_circle'; + static const String stop_circle_outlined = 'stop_circle_outlined'; + static const String stop_circle_rounded = 'stop_circle_rounded'; + static const String stop_circle_sharp = 'stop_circle_sharp'; + static const String stop_outlined = 'stop_outlined'; + static const String stop_rounded = 'stop_rounded'; + static const String stop_screen_share = 'stop_screen_share'; + static const String stop_screen_share_outlined = 'stop_screen_share_outlined'; + static const String stop_screen_share_rounded = 'stop_screen_share_rounded'; + static const String stop_screen_share_sharp = 'stop_screen_share_sharp'; + static const String stop_sharp = 'stop_sharp'; + static const String storage = 'storage'; + static const String storage_outlined = 'storage_outlined'; + static const String storage_rounded = 'storage_rounded'; + static const String storage_sharp = 'storage_sharp'; + static const String store = 'store'; + static const String store_mall_directory = 'store_mall_directory'; + static const String store_mall_directory_outlined = + 'store_mall_directory_outlined'; + static const String store_mall_directory_rounded = + 'store_mall_directory_rounded'; + static const String store_mall_directory_sharp = 'store_mall_directory_sharp'; + static const String store_outlined = 'store_outlined'; + static const String store_rounded = 'store_rounded'; + static const String store_sharp = 'store_sharp'; + static const String storefront = 'storefront'; + static const String storefront_outlined = 'storefront_outlined'; + static const String storefront_rounded = 'storefront_rounded'; + static const String storefront_sharp = 'storefront_sharp'; + static const String storm = 'storm'; + static const String storm_outlined = 'storm_outlined'; + static const String storm_rounded = 'storm_rounded'; + static const String storm_sharp = 'storm_sharp'; + static const String straight = 'straight'; + static const String straight_outlined = 'straight_outlined'; + static const String straight_rounded = 'straight_rounded'; + static const String straight_sharp = 'straight_sharp'; + static const String straighten = 'straighten'; + static const String straighten_outlined = 'straighten_outlined'; + static const String straighten_rounded = 'straighten_rounded'; + static const String straighten_sharp = 'straighten_sharp'; + static const String stream = 'stream'; + static const String stream_outlined = 'stream_outlined'; + static const String stream_rounded = 'stream_rounded'; + static const String stream_sharp = 'stream_sharp'; + static const String streetview = 'streetview'; + static const String streetview_outlined = 'streetview_outlined'; + static const String streetview_rounded = 'streetview_rounded'; + static const String streetview_sharp = 'streetview_sharp'; + static const String strikethrough_s = 'strikethrough_s'; + static const String strikethrough_s_outlined = 'strikethrough_s_outlined'; + static const String strikethrough_s_rounded = 'strikethrough_s_rounded'; + static const String strikethrough_s_sharp = 'strikethrough_s_sharp'; + static const String stroller = 'stroller'; + static const String stroller_outlined = 'stroller_outlined'; + static const String stroller_rounded = 'stroller_rounded'; + static const String stroller_sharp = 'stroller_sharp'; + static const String style = 'style'; + static const String style_outlined = 'style_outlined'; + static const String style_rounded = 'style_rounded'; + static const String style_sharp = 'style_sharp'; + static const String subdirectory_arrow_left = 'subdirectory_arrow_left'; + static const String subdirectory_arrow_left_outlined = + 'subdirectory_arrow_left_outlined'; + static const String subdirectory_arrow_left_rounded = + 'subdirectory_arrow_left_rounded'; + static const String subdirectory_arrow_left_sharp = + 'subdirectory_arrow_left_sharp'; + static const String subdirectory_arrow_right = 'subdirectory_arrow_right'; + static const String subdirectory_arrow_right_outlined = + 'subdirectory_arrow_right_outlined'; + static const String subdirectory_arrow_right_rounded = + 'subdirectory_arrow_right_rounded'; + static const String subdirectory_arrow_right_sharp = + 'subdirectory_arrow_right_sharp'; + static const String subject = 'subject'; + static const String subject_outlined = 'subject_outlined'; + static const String subject_rounded = 'subject_rounded'; + static const String subject_sharp = 'subject_sharp'; + static const String subscript = 'subscript'; + static const String subscript_outlined = 'subscript_outlined'; + static const String subscript_rounded = 'subscript_rounded'; + static const String subscript_sharp = 'subscript_sharp'; + static const String subscriptions = 'subscriptions'; + static const String subscriptions_outlined = 'subscriptions_outlined'; + static const String subscriptions_rounded = 'subscriptions_rounded'; + static const String subscriptions_sharp = 'subscriptions_sharp'; + static const String subtitles = 'subtitles'; + static const String subtitles_off = 'subtitles_off'; + static const String subtitles_off_outlined = 'subtitles_off_outlined'; + static const String subtitles_off_rounded = 'subtitles_off_rounded'; + static const String subtitles_off_sharp = 'subtitles_off_sharp'; + static const String subtitles_outlined = 'subtitles_outlined'; + static const String subtitles_rounded = 'subtitles_rounded'; + static const String subtitles_sharp = 'subtitles_sharp'; + static const String subway = 'subway'; + static const String subway_outlined = 'subway_outlined'; + static const String subway_rounded = 'subway_rounded'; + static const String subway_sharp = 'subway_sharp'; + static const String summarize = 'summarize'; + static const String summarize_outlined = 'summarize_outlined'; + static const String summarize_rounded = 'summarize_rounded'; + static const String summarize_sharp = 'summarize_sharp'; + static const String sunny = 'sunny'; + static const String sunny_snowing = 'sunny_snowing'; + static const String superscript = 'superscript'; + static const String superscript_outlined = 'superscript_outlined'; + static const String superscript_rounded = 'superscript_rounded'; + static const String superscript_sharp = 'superscript_sharp'; + static const String supervised_user_circle = 'supervised_user_circle'; + static const String supervised_user_circle_outlined = + 'supervised_user_circle_outlined'; + static const String supervised_user_circle_rounded = + 'supervised_user_circle_rounded'; + static const String supervised_user_circle_sharp = + 'supervised_user_circle_sharp'; + static const String supervisor_account = 'supervisor_account'; + static const String supervisor_account_outlined = + 'supervisor_account_outlined'; + static const String supervisor_account_rounded = 'supervisor_account_rounded'; + static const String supervisor_account_sharp = 'supervisor_account_sharp'; + static const String support = 'support'; + static const String support_agent = 'support_agent'; + static const String support_agent_outlined = 'support_agent_outlined'; + static const String support_agent_rounded = 'support_agent_rounded'; + static const String support_agent_sharp = 'support_agent_sharp'; + static const String support_outlined = 'support_outlined'; + static const String support_rounded = 'support_rounded'; + static const String support_sharp = 'support_sharp'; + static const String surfing = 'surfing'; + static const String surfing_outlined = 'surfing_outlined'; + static const String surfing_rounded = 'surfing_rounded'; + static const String surfing_sharp = 'surfing_sharp'; + static const String surround_sound = 'surround_sound'; + static const String surround_sound_outlined = 'surround_sound_outlined'; + static const String surround_sound_rounded = 'surround_sound_rounded'; + static const String surround_sound_sharp = 'surround_sound_sharp'; + static const String swap_calls = 'swap_calls'; + static const String swap_calls_outlined = 'swap_calls_outlined'; + static const String swap_calls_rounded = 'swap_calls_rounded'; + static const String swap_calls_sharp = 'swap_calls_sharp'; + static const String swap_horiz = 'swap_horiz'; + static const String swap_horiz_outlined = 'swap_horiz_outlined'; + static const String swap_horiz_rounded = 'swap_horiz_rounded'; + static const String swap_horiz_sharp = 'swap_horiz_sharp'; + static const String swap_horizontal_circle = 'swap_horizontal_circle'; + static const String swap_horizontal_circle_outlined = + 'swap_horizontal_circle_outlined'; + static const String swap_horizontal_circle_rounded = + 'swap_horizontal_circle_rounded'; + static const String swap_horizontal_circle_sharp = + 'swap_horizontal_circle_sharp'; + static const String swap_vert = 'swap_vert'; + static const String swap_vert_circle = 'swap_vert_circle'; + static const String swap_vert_circle_outlined = 'swap_vert_circle_outlined'; + static const String swap_vert_circle_rounded = 'swap_vert_circle_rounded'; + static const String swap_vert_circle_sharp = 'swap_vert_circle_sharp'; + static const String swap_vert_outlined = 'swap_vert_outlined'; + static const String swap_vert_rounded = 'swap_vert_rounded'; + static const String swap_vert_sharp = 'swap_vert_sharp'; + static const String swap_vertical_circle = 'swap_vertical_circle'; + static const String swap_vertical_circle_outlined = + 'swap_vertical_circle_outlined'; + static const String swap_vertical_circle_rounded = + 'swap_vertical_circle_rounded'; + static const String swap_vertical_circle_sharp = 'swap_vertical_circle_sharp'; + static const String swipe = 'swipe'; + static const String swipe_down = 'swipe_down'; + static const String swipe_down_alt = 'swipe_down_alt'; + static const String swipe_down_alt_outlined = 'swipe_down_alt_outlined'; + static const String swipe_down_alt_rounded = 'swipe_down_alt_rounded'; + static const String swipe_down_alt_sharp = 'swipe_down_alt_sharp'; + static const String swipe_down_outlined = 'swipe_down_outlined'; + static const String swipe_down_rounded = 'swipe_down_rounded'; + static const String swipe_down_sharp = 'swipe_down_sharp'; + static const String swipe_left = 'swipe_left'; + static const String swipe_left_alt = 'swipe_left_alt'; + static const String swipe_left_alt_outlined = 'swipe_left_alt_outlined'; + static const String swipe_left_alt_rounded = 'swipe_left_alt_rounded'; + static const String swipe_left_alt_sharp = 'swipe_left_alt_sharp'; + static const String swipe_left_outlined = 'swipe_left_outlined'; + static const String swipe_left_rounded = 'swipe_left_rounded'; + static const String swipe_left_sharp = 'swipe_left_sharp'; + static const String swipe_outlined = 'swipe_outlined'; + static const String swipe_right = 'swipe_right'; + static const String swipe_right_alt = 'swipe_right_alt'; + static const String swipe_right_alt_outlined = 'swipe_right_alt_outlined'; + static const String swipe_right_alt_rounded = 'swipe_right_alt_rounded'; + static const String swipe_right_alt_sharp = 'swipe_right_alt_sharp'; + static const String swipe_right_outlined = 'swipe_right_outlined'; + static const String swipe_right_rounded = 'swipe_right_rounded'; + static const String swipe_right_sharp = 'swipe_right_sharp'; + static const String swipe_rounded = 'swipe_rounded'; + static const String swipe_sharp = 'swipe_sharp'; + static const String swipe_up = 'swipe_up'; + static const String swipe_up_alt = 'swipe_up_alt'; + static const String swipe_up_alt_outlined = 'swipe_up_alt_outlined'; + static const String swipe_up_alt_rounded = 'swipe_up_alt_rounded'; + static const String swipe_up_alt_sharp = 'swipe_up_alt_sharp'; + static const String swipe_up_outlined = 'swipe_up_outlined'; + static const String swipe_up_rounded = 'swipe_up_rounded'; + static const String swipe_up_sharp = 'swipe_up_sharp'; + static const String swipe_vertical = 'swipe_vertical'; + static const String swipe_vertical_outlined = 'swipe_vertical_outlined'; + static const String swipe_vertical_rounded = 'swipe_vertical_rounded'; + static const String swipe_vertical_sharp = 'swipe_vertical_sharp'; + static const String switch_access_shortcut = 'switch_access_shortcut'; + static const String switch_access_shortcut_add = 'switch_access_shortcut_add'; + static const String switch_access_shortcut_add_outlined = + 'switch_access_shortcut_add_outlined'; + static const String switch_access_shortcut_add_rounded = + 'switch_access_shortcut_add_rounded'; + static const String switch_access_shortcut_add_sharp = + 'switch_access_shortcut_add_sharp'; + static const String switch_access_shortcut_outlined = + 'switch_access_shortcut_outlined'; + static const String switch_access_shortcut_rounded = + 'switch_access_shortcut_rounded'; + static const String switch_access_shortcut_sharp = + 'switch_access_shortcut_sharp'; + static const String switch_account = 'switch_account'; + static const String switch_account_outlined = 'switch_account_outlined'; + static const String switch_account_rounded = 'switch_account_rounded'; + static const String switch_account_sharp = 'switch_account_sharp'; + static const String switch_camera = 'switch_camera'; + static const String switch_camera_outlined = 'switch_camera_outlined'; + static const String switch_camera_rounded = 'switch_camera_rounded'; + static const String switch_camera_sharp = 'switch_camera_sharp'; + static const String switch_left = 'switch_left'; + static const String switch_left_outlined = 'switch_left_outlined'; + static const String switch_left_rounded = 'switch_left_rounded'; + static const String switch_left_sharp = 'switch_left_sharp'; + static const String switch_right = 'switch_right'; + static const String switch_right_outlined = 'switch_right_outlined'; + static const String switch_right_rounded = 'switch_right_rounded'; + static const String switch_right_sharp = 'switch_right_sharp'; + static const String switch_video = 'switch_video'; + static const String switch_video_outlined = 'switch_video_outlined'; + static const String switch_video_rounded = 'switch_video_rounded'; + static const String switch_video_sharp = 'switch_video_sharp'; + static const String synagogue = 'synagogue'; + static const String synagogue_outlined = 'synagogue_outlined'; + static const String synagogue_rounded = 'synagogue_rounded'; + static const String synagogue_sharp = 'synagogue_sharp'; + static const String sync = 'sync'; + static const String sync_alt = 'sync_alt'; + static const String sync_alt_outlined = 'sync_alt_outlined'; + static const String sync_alt_rounded = 'sync_alt_rounded'; + static const String sync_alt_sharp = 'sync_alt_sharp'; + static const String sync_disabled = 'sync_disabled'; + static const String sync_disabled_outlined = 'sync_disabled_outlined'; + static const String sync_disabled_rounded = 'sync_disabled_rounded'; + static const String sync_disabled_sharp = 'sync_disabled_sharp'; + static const String sync_lock = 'sync_lock'; + static const String sync_lock_outlined = 'sync_lock_outlined'; + static const String sync_lock_rounded = 'sync_lock_rounded'; + static const String sync_lock_sharp = 'sync_lock_sharp'; + static const String sync_outlined = 'sync_outlined'; + static const String sync_problem = 'sync_problem'; + static const String sync_problem_outlined = 'sync_problem_outlined'; + static const String sync_problem_rounded = 'sync_problem_rounded'; + static const String sync_problem_sharp = 'sync_problem_sharp'; + static const String sync_rounded = 'sync_rounded'; + static const String sync_sharp = 'sync_sharp'; + static const String system_security_update = 'system_security_update'; + static const String system_security_update_good = + 'system_security_update_good'; + static const String system_security_update_good_outlined = + 'system_security_update_good_outlined'; + static const String system_security_update_good_rounded = + 'system_security_update_good_rounded'; + static const String system_security_update_good_sharp = + 'system_security_update_good_sharp'; + static const String system_security_update_outlined = + 'system_security_update_outlined'; + static const String system_security_update_rounded = + 'system_security_update_rounded'; + static const String system_security_update_sharp = + 'system_security_update_sharp'; + static const String system_security_update_warning = + 'system_security_update_warning'; + static const String system_security_update_warning_outlined = + 'system_security_update_warning_outlined'; + static const String system_security_update_warning_rounded = + 'system_security_update_warning_rounded'; + static const String system_security_update_warning_sharp = + 'system_security_update_warning_sharp'; + static const String system_update = 'system_update'; + static const String system_update_alt = 'system_update_alt'; + static const String system_update_alt_outlined = 'system_update_alt_outlined'; + static const String system_update_alt_rounded = 'system_update_alt_rounded'; + static const String system_update_alt_sharp = 'system_update_alt_sharp'; + static const String system_update_outlined = 'system_update_outlined'; + static const String system_update_rounded = 'system_update_rounded'; + static const String system_update_sharp = 'system_update_sharp'; + static const String system_update_tv = 'system_update_tv'; + static const String system_update_tv_outlined = 'system_update_tv_outlined'; + static const String system_update_tv_rounded = 'system_update_tv_rounded'; + static const String system_update_tv_sharp = 'system_update_tv_sharp'; + static const String tab = 'tab'; + static const String tab_outlined = 'tab_outlined'; + static const String tab_rounded = 'tab_rounded'; + static const String tab_sharp = 'tab_sharp'; + static const String tab_unselected = 'tab_unselected'; + static const String tab_unselected_outlined = 'tab_unselected_outlined'; + static const String tab_unselected_rounded = 'tab_unselected_rounded'; + static const String tab_unselected_sharp = 'tab_unselected_sharp'; + static const String table_bar = 'table_bar'; + static const String table_bar_outlined = 'table_bar_outlined'; + static const String table_bar_rounded = 'table_bar_rounded'; + static const String table_bar_sharp = 'table_bar_sharp'; + static const String table_chart = 'table_chart'; + static const String table_chart_outlined = 'table_chart_outlined'; + static const String table_chart_rounded = 'table_chart_rounded'; + static const String table_chart_sharp = 'table_chart_sharp'; + static const String table_restaurant = 'table_restaurant'; + static const String table_restaurant_outlined = 'table_restaurant_outlined'; + static const String table_restaurant_rounded = 'table_restaurant_rounded'; + static const String table_restaurant_sharp = 'table_restaurant_sharp'; + static const String table_rows = 'table_rows'; + static const String table_rows_outlined = 'table_rows_outlined'; + static const String table_rows_rounded = 'table_rows_rounded'; + static const String table_rows_sharp = 'table_rows_sharp'; + static const String table_view = 'table_view'; + static const String table_view_outlined = 'table_view_outlined'; + static const String table_view_rounded = 'table_view_rounded'; + static const String table_view_sharp = 'table_view_sharp'; + static const String tablet = 'tablet'; + static const String tablet_android = 'tablet_android'; + static const String tablet_android_outlined = 'tablet_android_outlined'; + static const String tablet_android_rounded = 'tablet_android_rounded'; + static const String tablet_android_sharp = 'tablet_android_sharp'; + static const String tablet_mac = 'tablet_mac'; + static const String tablet_mac_outlined = 'tablet_mac_outlined'; + static const String tablet_mac_rounded = 'tablet_mac_rounded'; + static const String tablet_mac_sharp = 'tablet_mac_sharp'; + static const String tablet_outlined = 'tablet_outlined'; + static const String tablet_rounded = 'tablet_rounded'; + static const String tablet_sharp = 'tablet_sharp'; + static const String tag = 'tag'; + static const String tag_faces = 'tag_faces'; + static const String tag_faces_outlined = 'tag_faces_outlined'; + static const String tag_faces_rounded = 'tag_faces_rounded'; + static const String tag_faces_sharp = 'tag_faces_sharp'; + static const String tag_outlined = 'tag_outlined'; + static const String tag_rounded = 'tag_rounded'; + static const String tag_sharp = 'tag_sharp'; + static const String takeout_dining = 'takeout_dining'; + static const String takeout_dining_outlined = 'takeout_dining_outlined'; + static const String takeout_dining_rounded = 'takeout_dining_rounded'; + static const String takeout_dining_sharp = 'takeout_dining_sharp'; + static const String tap_and_play = 'tap_and_play'; + static const String tap_and_play_outlined = 'tap_and_play_outlined'; + static const String tap_and_play_rounded = 'tap_and_play_rounded'; + static const String tap_and_play_sharp = 'tap_and_play_sharp'; + static const String tapas = 'tapas'; + static const String tapas_outlined = 'tapas_outlined'; + static const String tapas_rounded = 'tapas_rounded'; + static const String tapas_sharp = 'tapas_sharp'; + static const String task = 'task'; + static const String task_alt = 'task_alt'; + static const String task_alt_outlined = 'task_alt_outlined'; + static const String task_alt_rounded = 'task_alt_rounded'; + static const String task_alt_sharp = 'task_alt_sharp'; + static const String task_outlined = 'task_outlined'; + static const String task_rounded = 'task_rounded'; + static const String task_sharp = 'task_sharp'; + static const String taxi_alert = 'taxi_alert'; + static const String taxi_alert_outlined = 'taxi_alert_outlined'; + static const String taxi_alert_rounded = 'taxi_alert_rounded'; + static const String taxi_alert_sharp = 'taxi_alert_sharp'; + static const String telegram = 'telegram'; + static const String telegram_outlined = 'telegram_outlined'; + static const String telegram_rounded = 'telegram_rounded'; + static const String telegram_sharp = 'telegram_sharp'; + static const String temple_buddhist = 'temple_buddhist'; + static const String temple_buddhist_outlined = 'temple_buddhist_outlined'; + static const String temple_buddhist_rounded = 'temple_buddhist_rounded'; + static const String temple_buddhist_sharp = 'temple_buddhist_sharp'; + static const String temple_hindu = 'temple_hindu'; + static const String temple_hindu_outlined = 'temple_hindu_outlined'; + static const String temple_hindu_rounded = 'temple_hindu_rounded'; + static const String temple_hindu_sharp = 'temple_hindu_sharp'; + static const String ten_k = 'ten_k'; + static const String ten_k_outlined = 'ten_k_outlined'; + static const String ten_k_rounded = 'ten_k_rounded'; + static const String ten_k_sharp = 'ten_k_sharp'; + static const String ten_mp = 'ten_mp'; + static const String ten_mp_outlined = 'ten_mp_outlined'; + static const String ten_mp_rounded = 'ten_mp_rounded'; + static const String ten_mp_sharp = 'ten_mp_sharp'; + static const String terminal = 'terminal'; + static const String terminal_outlined = 'terminal_outlined'; + static const String terminal_rounded = 'terminal_rounded'; + static const String terminal_sharp = 'terminal_sharp'; + static const String terrain = 'terrain'; + static const String terrain_outlined = 'terrain_outlined'; + static const String terrain_rounded = 'terrain_rounded'; + static const String terrain_sharp = 'terrain_sharp'; + static const String text_decrease = 'text_decrease'; + static const String text_decrease_outlined = 'text_decrease_outlined'; + static const String text_decrease_rounded = 'text_decrease_rounded'; + static const String text_decrease_sharp = 'text_decrease_sharp'; + static const String text_fields = 'text_fields'; + static const String text_fields_outlined = 'text_fields_outlined'; + static const String text_fields_rounded = 'text_fields_rounded'; + static const String text_fields_sharp = 'text_fields_sharp'; + static const String text_format = 'text_format'; + static const String text_format_outlined = 'text_format_outlined'; + static const String text_format_rounded = 'text_format_rounded'; + static const String text_format_sharp = 'text_format_sharp'; + static const String text_increase = 'text_increase'; + static const String text_increase_outlined = 'text_increase_outlined'; + static const String text_increase_rounded = 'text_increase_rounded'; + static const String text_increase_sharp = 'text_increase_sharp'; + static const String text_rotate_up = 'text_rotate_up'; + static const String text_rotate_up_outlined = 'text_rotate_up_outlined'; + static const String text_rotate_up_rounded = 'text_rotate_up_rounded'; + static const String text_rotate_up_sharp = 'text_rotate_up_sharp'; + static const String text_rotate_vertical = 'text_rotate_vertical'; + static const String text_rotate_vertical_outlined = + 'text_rotate_vertical_outlined'; + static const String text_rotate_vertical_rounded = + 'text_rotate_vertical_rounded'; + static const String text_rotate_vertical_sharp = 'text_rotate_vertical_sharp'; + static const String text_rotation_angledown = 'text_rotation_angledown'; + static const String text_rotation_angledown_outlined = + 'text_rotation_angledown_outlined'; + static const String text_rotation_angledown_rounded = + 'text_rotation_angledown_rounded'; + static const String text_rotation_angledown_sharp = + 'text_rotation_angledown_sharp'; + static const String text_rotation_angleup = 'text_rotation_angleup'; + static const String text_rotation_angleup_outlined = + 'text_rotation_angleup_outlined'; + static const String text_rotation_angleup_rounded = + 'text_rotation_angleup_rounded'; + static const String text_rotation_angleup_sharp = + 'text_rotation_angleup_sharp'; + static const String text_rotation_down = 'text_rotation_down'; + static const String text_rotation_down_outlined = + 'text_rotation_down_outlined'; + static const String text_rotation_down_rounded = 'text_rotation_down_rounded'; + static const String text_rotation_down_sharp = 'text_rotation_down_sharp'; + static const String text_rotation_none = 'text_rotation_none'; + static const String text_rotation_none_outlined = + 'text_rotation_none_outlined'; + static const String text_rotation_none_rounded = 'text_rotation_none_rounded'; + static const String text_rotation_none_sharp = 'text_rotation_none_sharp'; + static const String text_snippet = 'text_snippet'; + static const String text_snippet_outlined = 'text_snippet_outlined'; + static const String text_snippet_rounded = 'text_snippet_rounded'; + static const String text_snippet_sharp = 'text_snippet_sharp'; + static const String textsms = 'textsms'; + static const String textsms_outlined = 'textsms_outlined'; + static const String textsms_rounded = 'textsms_rounded'; + static const String textsms_sharp = 'textsms_sharp'; + static const String texture = 'texture'; + static const String texture_outlined = 'texture_outlined'; + static const String texture_rounded = 'texture_rounded'; + static const String texture_sharp = 'texture_sharp'; + static const String theater_comedy = 'theater_comedy'; + static const String theater_comedy_outlined = 'theater_comedy_outlined'; + static const String theater_comedy_rounded = 'theater_comedy_rounded'; + static const String theater_comedy_sharp = 'theater_comedy_sharp'; + static const String theaters = 'theaters'; + static const String theaters_outlined = 'theaters_outlined'; + static const String theaters_rounded = 'theaters_rounded'; + static const String theaters_sharp = 'theaters_sharp'; + static const String thermostat = 'thermostat'; + static const String thermostat_auto = 'thermostat_auto'; + static const String thermostat_auto_outlined = 'thermostat_auto_outlined'; + static const String thermostat_auto_rounded = 'thermostat_auto_rounded'; + static const String thermostat_auto_sharp = 'thermostat_auto_sharp'; + static const String thermostat_outlined = 'thermostat_outlined'; + static const String thermostat_rounded = 'thermostat_rounded'; + static const String thermostat_sharp = 'thermostat_sharp'; + static const String thirteen_mp = 'thirteen_mp'; + static const String thirteen_mp_outlined = 'thirteen_mp_outlined'; + static const String thirteen_mp_rounded = 'thirteen_mp_rounded'; + static const String thirteen_mp_sharp = 'thirteen_mp_sharp'; + static const String thirty_fps = 'thirty_fps'; + static const String thirty_fps_outlined = 'thirty_fps_outlined'; + static const String thirty_fps_rounded = 'thirty_fps_rounded'; + static const String thirty_fps_select = 'thirty_fps_select'; + static const String thirty_fps_select_outlined = 'thirty_fps_select_outlined'; + static const String thirty_fps_select_rounded = 'thirty_fps_select_rounded'; + static const String thirty_fps_select_sharp = 'thirty_fps_select_sharp'; + static const String thirty_fps_sharp = 'thirty_fps_sharp'; + static const String three_g_mobiledata = 'three_g_mobiledata'; + static const String three_g_mobiledata_outlined = + 'three_g_mobiledata_outlined'; + static const String three_g_mobiledata_rounded = 'three_g_mobiledata_rounded'; + static const String three_g_mobiledata_sharp = 'three_g_mobiledata_sharp'; + static const String three_k = 'three_k'; + static const String three_k_outlined = 'three_k_outlined'; + static const String three_k_plus = 'three_k_plus'; + static const String three_k_plus_outlined = 'three_k_plus_outlined'; + static const String three_k_plus_rounded = 'three_k_plus_rounded'; + static const String three_k_plus_sharp = 'three_k_plus_sharp'; + static const String three_k_rounded = 'three_k_rounded'; + static const String three_k_sharp = 'three_k_sharp'; + static const String three_mp = 'three_mp'; + static const String three_mp_outlined = 'three_mp_outlined'; + static const String three_mp_rounded = 'three_mp_rounded'; + static const String three_mp_sharp = 'three_mp_sharp'; + static const String three_p = 'three_p'; + static const String three_p_outlined = 'three_p_outlined'; + static const String three_p_rounded = 'three_p_rounded'; + static const String three_p_sharp = 'three_p_sharp'; + static const String threed_rotation = 'threed_rotation'; + static const String threed_rotation_outlined = 'threed_rotation_outlined'; + static const String threed_rotation_rounded = 'threed_rotation_rounded'; + static const String threed_rotation_sharp = 'threed_rotation_sharp'; + static const String threesixty = 'threesixty'; + static const String threesixty_outlined = 'threesixty_outlined'; + static const String threesixty_rounded = 'threesixty_rounded'; + static const String threesixty_sharp = 'threesixty_sharp'; + static const String thumb_down = 'thumb_down'; + static const String thumb_down_alt = 'thumb_down_alt'; + static const String thumb_down_alt_outlined = 'thumb_down_alt_outlined'; + static const String thumb_down_alt_rounded = 'thumb_down_alt_rounded'; + static const String thumb_down_alt_sharp = 'thumb_down_alt_sharp'; + static const String thumb_down_off_alt = 'thumb_down_off_alt'; + static const String thumb_down_off_alt_outlined = + 'thumb_down_off_alt_outlined'; + static const String thumb_down_off_alt_rounded = 'thumb_down_off_alt_rounded'; + static const String thumb_down_off_alt_sharp = 'thumb_down_off_alt_sharp'; + static const String thumb_down_outlined = 'thumb_down_outlined'; + static const String thumb_down_rounded = 'thumb_down_rounded'; + static const String thumb_down_sharp = 'thumb_down_sharp'; + static const String thumb_up = 'thumb_up'; + static const String thumb_up_alt = 'thumb_up_alt'; + static const String thumb_up_alt_outlined = 'thumb_up_alt_outlined'; + static const String thumb_up_alt_rounded = 'thumb_up_alt_rounded'; + static const String thumb_up_alt_sharp = 'thumb_up_alt_sharp'; + static const String thumb_up_off_alt = 'thumb_up_off_alt'; + static const String thumb_up_off_alt_outlined = 'thumb_up_off_alt_outlined'; + static const String thumb_up_off_alt_rounded = 'thumb_up_off_alt_rounded'; + static const String thumb_up_off_alt_sharp = 'thumb_up_off_alt_sharp'; + static const String thumb_up_outlined = 'thumb_up_outlined'; + static const String thumb_up_rounded = 'thumb_up_rounded'; + static const String thumb_up_sharp = 'thumb_up_sharp'; + static const String thumbs_up_down = 'thumbs_up_down'; + static const String thumbs_up_down_outlined = 'thumbs_up_down_outlined'; + static const String thumbs_up_down_rounded = 'thumbs_up_down_rounded'; + static const String thumbs_up_down_sharp = 'thumbs_up_down_sharp'; + static const String thunderstorm = 'thunderstorm'; + static const String thunderstorm_outlined = 'thunderstorm_outlined'; + static const String thunderstorm_rounded = 'thunderstorm_rounded'; + static const String thunderstorm_sharp = 'thunderstorm_sharp'; + static const String tiktok = 'tiktok'; + static const String tiktok_outlined = 'tiktok_outlined'; + static const String tiktok_rounded = 'tiktok_rounded'; + static const String tiktok_sharp = 'tiktok_sharp'; + static const String time_to_leave = 'time_to_leave'; + static const String time_to_leave_outlined = 'time_to_leave_outlined'; + static const String time_to_leave_rounded = 'time_to_leave_rounded'; + static const String time_to_leave_sharp = 'time_to_leave_sharp'; + static const String timelapse = 'timelapse'; + static const String timelapse_outlined = 'timelapse_outlined'; + static const String timelapse_rounded = 'timelapse_rounded'; + static const String timelapse_sharp = 'timelapse_sharp'; + static const String timeline = 'timeline'; + static const String timeline_outlined = 'timeline_outlined'; + static const String timeline_rounded = 'timeline_rounded'; + static const String timeline_sharp = 'timeline_sharp'; + static const String timer = 'timer'; + static const String timer_10 = 'timer_10'; + static const String timer_10_outlined = 'timer_10_outlined'; + static const String timer_10_rounded = 'timer_10_rounded'; + static const String timer_10_select = 'timer_10_select'; + static const String timer_10_select_outlined = 'timer_10_select_outlined'; + static const String timer_10_select_rounded = 'timer_10_select_rounded'; + static const String timer_10_select_sharp = 'timer_10_select_sharp'; + static const String timer_10_sharp = 'timer_10_sharp'; + static const String timer_3 = 'timer_3'; + static const String timer_3_outlined = 'timer_3_outlined'; + static const String timer_3_rounded = 'timer_3_rounded'; + static const String timer_3_select = 'timer_3_select'; + static const String timer_3_select_outlined = 'timer_3_select_outlined'; + static const String timer_3_select_rounded = 'timer_3_select_rounded'; + static const String timer_3_select_sharp = 'timer_3_select_sharp'; + static const String timer_3_sharp = 'timer_3_sharp'; + static const String timer_off = 'timer_off'; + static const String timer_off_outlined = 'timer_off_outlined'; + static const String timer_off_rounded = 'timer_off_rounded'; + static const String timer_off_sharp = 'timer_off_sharp'; + static const String timer_outlined = 'timer_outlined'; + static const String timer_rounded = 'timer_rounded'; + static const String timer_sharp = 'timer_sharp'; + static const String tips_and_updates = 'tips_and_updates'; + static const String tips_and_updates_outlined = 'tips_and_updates_outlined'; + static const String tips_and_updates_rounded = 'tips_and_updates_rounded'; + static const String tips_and_updates_sharp = 'tips_and_updates_sharp'; + static const String tire_repair = 'tire_repair'; + static const String tire_repair_outlined = 'tire_repair_outlined'; + static const String tire_repair_rounded = 'tire_repair_rounded'; + static const String tire_repair_sharp = 'tire_repair_sharp'; + static const String title = 'title'; + static const String title_outlined = 'title_outlined'; + static const String title_rounded = 'title_rounded'; + static const String title_sharp = 'title_sharp'; + static const String toc = 'toc'; + static const String toc_outlined = 'toc_outlined'; + static const String toc_rounded = 'toc_rounded'; + static const String toc_sharp = 'toc_sharp'; + static const String today = 'today'; + static const String today_outlined = 'today_outlined'; + static const String today_rounded = 'today_rounded'; + static const String today_sharp = 'today_sharp'; + static const String toggle_off = 'toggle_off'; + static const String toggle_off_outlined = 'toggle_off_outlined'; + static const String toggle_off_rounded = 'toggle_off_rounded'; + static const String toggle_off_sharp = 'toggle_off_sharp'; + static const String toggle_on = 'toggle_on'; + static const String toggle_on_outlined = 'toggle_on_outlined'; + static const String toggle_on_rounded = 'toggle_on_rounded'; + static const String toggle_on_sharp = 'toggle_on_sharp'; + static const String token = 'token'; + static const String token_outlined = 'token_outlined'; + static const String token_rounded = 'token_rounded'; + static const String token_sharp = 'token_sharp'; + static const String toll = 'toll'; + static const String toll_outlined = 'toll_outlined'; + static const String toll_rounded = 'toll_rounded'; + static const String toll_sharp = 'toll_sharp'; + static const String tonality = 'tonality'; + static const String tonality_outlined = 'tonality_outlined'; + static const String tonality_rounded = 'tonality_rounded'; + static const String tonality_sharp = 'tonality_sharp'; + static const String topic = 'topic'; + static const String topic_outlined = 'topic_outlined'; + static const String topic_rounded = 'topic_rounded'; + static const String topic_sharp = 'topic_sharp'; + static const String tornado = 'tornado'; + static const String tornado_outlined = 'tornado_outlined'; + static const String tornado_rounded = 'tornado_rounded'; + static const String tornado_sharp = 'tornado_sharp'; + static const String touch_app = 'touch_app'; + static const String touch_app_outlined = 'touch_app_outlined'; + static const String touch_app_rounded = 'touch_app_rounded'; + static const String touch_app_sharp = 'touch_app_sharp'; + static const String tour = 'tour'; + static const String tour_outlined = 'tour_outlined'; + static const String tour_rounded = 'tour_rounded'; + static const String tour_sharp = 'tour_sharp'; + static const String toys = 'toys'; + static const String toys_outlined = 'toys_outlined'; + static const String toys_rounded = 'toys_rounded'; + static const String toys_sharp = 'toys_sharp'; + static const String track_changes = 'track_changes'; + static const String track_changes_outlined = 'track_changes_outlined'; + static const String track_changes_rounded = 'track_changes_rounded'; + static const String track_changes_sharp = 'track_changes_sharp'; + static const String traffic = 'traffic'; + static const String traffic_outlined = 'traffic_outlined'; + static const String traffic_rounded = 'traffic_rounded'; + static const String traffic_sharp = 'traffic_sharp'; + static const String train = 'train'; + static const String train_outlined = 'train_outlined'; + static const String train_rounded = 'train_rounded'; + static const String train_sharp = 'train_sharp'; + static const String tram = 'tram'; + static const String tram_outlined = 'tram_outlined'; + static const String tram_rounded = 'tram_rounded'; + static const String tram_sharp = 'tram_sharp'; + static const String transcribe = 'transcribe'; + static const String transcribe_outlined = 'transcribe_outlined'; + static const String transcribe_rounded = 'transcribe_rounded'; + static const String transcribe_sharp = 'transcribe_sharp'; + static const String transfer_within_a_station = 'transfer_within_a_station'; + static const String transfer_within_a_station_outlined = + 'transfer_within_a_station_outlined'; + static const String transfer_within_a_station_rounded = + 'transfer_within_a_station_rounded'; + static const String transfer_within_a_station_sharp = + 'transfer_within_a_station_sharp'; + static const String transform = 'transform'; + static const String transform_outlined = 'transform_outlined'; + static const String transform_rounded = 'transform_rounded'; + static const String transform_sharp = 'transform_sharp'; + static const String transgender = 'transgender'; + static const String transgender_outlined = 'transgender_outlined'; + static const String transgender_rounded = 'transgender_rounded'; + static const String transgender_sharp = 'transgender_sharp'; + static const String transit_enterexit = 'transit_enterexit'; + static const String transit_enterexit_outlined = 'transit_enterexit_outlined'; + static const String transit_enterexit_rounded = 'transit_enterexit_rounded'; + static const String transit_enterexit_sharp = 'transit_enterexit_sharp'; + static const String translate = 'translate'; + static const String translate_outlined = 'translate_outlined'; + static const String translate_rounded = 'translate_rounded'; + static const String translate_sharp = 'translate_sharp'; + static const String travel_explore = 'travel_explore'; + static const String travel_explore_outlined = 'travel_explore_outlined'; + static const String travel_explore_rounded = 'travel_explore_rounded'; + static const String travel_explore_sharp = 'travel_explore_sharp'; + static const String trending_down = 'trending_down'; + static const String trending_down_outlined = 'trending_down_outlined'; + static const String trending_down_rounded = 'trending_down_rounded'; + static const String trending_down_sharp = 'trending_down_sharp'; + static const String trending_flat = 'trending_flat'; + static const String trending_flat_outlined = 'trending_flat_outlined'; + static const String trending_flat_rounded = 'trending_flat_rounded'; + static const String trending_flat_sharp = 'trending_flat_sharp'; + static const String trending_neutral = 'trending_neutral'; + static const String trending_neutral_outlined = 'trending_neutral_outlined'; + static const String trending_neutral_rounded = 'trending_neutral_rounded'; + static const String trending_neutral_sharp = 'trending_neutral_sharp'; + static const String trending_up = 'trending_up'; + static const String trending_up_outlined = 'trending_up_outlined'; + static const String trending_up_rounded = 'trending_up_rounded'; + static const String trending_up_sharp = 'trending_up_sharp'; + static const String trip_origin = 'trip_origin'; + static const String trip_origin_outlined = 'trip_origin_outlined'; + static const String trip_origin_rounded = 'trip_origin_rounded'; + static const String trip_origin_sharp = 'trip_origin_sharp'; + static const String troubleshoot = 'troubleshoot'; + static const String troubleshoot_outlined = 'troubleshoot_outlined'; + static const String troubleshoot_rounded = 'troubleshoot_rounded'; + static const String troubleshoot_sharp = 'troubleshoot_sharp'; + static const String try_sms_star = 'try_sms_star'; + static const String try_sms_star_outlined = 'try_sms_star_outlined'; + static const String try_sms_star_rounded = 'try_sms_star_rounded'; + static const String try_sms_star_sharp = 'try_sms_star_sharp'; + static const String tsunami = 'tsunami'; + static const String tsunami_outlined = 'tsunami_outlined'; + static const String tsunami_rounded = 'tsunami_rounded'; + static const String tsunami_sharp = 'tsunami_sharp'; + static const String tty = 'tty'; + static const String tty_outlined = 'tty_outlined'; + static const String tty_rounded = 'tty_rounded'; + static const String tty_sharp = 'tty_sharp'; + static const String tune = 'tune'; + static const String tune_outlined = 'tune_outlined'; + static const String tune_rounded = 'tune_rounded'; + static const String tune_sharp = 'tune_sharp'; + static const String tungsten = 'tungsten'; + static const String tungsten_outlined = 'tungsten_outlined'; + static const String tungsten_rounded = 'tungsten_rounded'; + static const String tungsten_sharp = 'tungsten_sharp'; + static const String turn_left = 'turn_left'; + static const String turn_left_outlined = 'turn_left_outlined'; + static const String turn_left_rounded = 'turn_left_rounded'; + static const String turn_left_sharp = 'turn_left_sharp'; + static const String turn_right = 'turn_right'; + static const String turn_right_outlined = 'turn_right_outlined'; + static const String turn_right_rounded = 'turn_right_rounded'; + static const String turn_right_sharp = 'turn_right_sharp'; + static const String turn_sharp_left = 'turn_sharp_left'; + static const String turn_sharp_left_outlined = 'turn_sharp_left_outlined'; + static const String turn_sharp_left_rounded = 'turn_sharp_left_rounded'; + static const String turn_sharp_left_sharp = 'turn_sharp_left_sharp'; + static const String turn_sharp_right = 'turn_sharp_right'; + static const String turn_sharp_right_outlined = 'turn_sharp_right_outlined'; + static const String turn_sharp_right_rounded = 'turn_sharp_right_rounded'; + static const String turn_sharp_right_sharp = 'turn_sharp_right_sharp'; + static const String turn_slight_left = 'turn_slight_left'; + static const String turn_slight_left_outlined = 'turn_slight_left_outlined'; + static const String turn_slight_left_rounded = 'turn_slight_left_rounded'; + static const String turn_slight_left_sharp = 'turn_slight_left_sharp'; + static const String turn_slight_right = 'turn_slight_right'; + static const String turn_slight_right_outlined = 'turn_slight_right_outlined'; + static const String turn_slight_right_rounded = 'turn_slight_right_rounded'; + static const String turn_slight_right_sharp = 'turn_slight_right_sharp'; + static const String turned_in = 'turned_in'; + static const String turned_in_not = 'turned_in_not'; + static const String turned_in_not_outlined = 'turned_in_not_outlined'; + static const String turned_in_not_rounded = 'turned_in_not_rounded'; + static const String turned_in_not_sharp = 'turned_in_not_sharp'; + static const String turned_in_outlined = 'turned_in_outlined'; + static const String turned_in_rounded = 'turned_in_rounded'; + static const String turned_in_sharp = 'turned_in_sharp'; + static const String tv = 'tv'; + static const String tv_off = 'tv_off'; + static const String tv_off_outlined = 'tv_off_outlined'; + static const String tv_off_rounded = 'tv_off_rounded'; + static const String tv_off_sharp = 'tv_off_sharp'; + static const String tv_outlined = 'tv_outlined'; + static const String tv_rounded = 'tv_rounded'; + static const String tv_sharp = 'tv_sharp'; + static const String twelve_mp = 'twelve_mp'; + static const String twelve_mp_outlined = 'twelve_mp_outlined'; + static const String twelve_mp_rounded = 'twelve_mp_rounded'; + static const String twelve_mp_sharp = 'twelve_mp_sharp'; + static const String twenty_four_mp = 'twenty_four_mp'; + static const String twenty_four_mp_outlined = 'twenty_four_mp_outlined'; + static const String twenty_four_mp_rounded = 'twenty_four_mp_rounded'; + static const String twenty_four_mp_sharp = 'twenty_four_mp_sharp'; + static const String twenty_mp = 'twenty_mp'; + static const String twenty_mp_outlined = 'twenty_mp_outlined'; + static const String twenty_mp_rounded = 'twenty_mp_rounded'; + static const String twenty_mp_sharp = 'twenty_mp_sharp'; + static const String twenty_one_mp = 'twenty_one_mp'; + static const String twenty_one_mp_outlined = 'twenty_one_mp_outlined'; + static const String twenty_one_mp_rounded = 'twenty_one_mp_rounded'; + static const String twenty_one_mp_sharp = 'twenty_one_mp_sharp'; + static const String twenty_three_mp = 'twenty_three_mp'; + static const String twenty_three_mp_outlined = 'twenty_three_mp_outlined'; + static const String twenty_three_mp_rounded = 'twenty_three_mp_rounded'; + static const String twenty_three_mp_sharp = 'twenty_three_mp_sharp'; + static const String twenty_two_mp = 'twenty_two_mp'; + static const String twenty_two_mp_outlined = 'twenty_two_mp_outlined'; + static const String twenty_two_mp_rounded = 'twenty_two_mp_rounded'; + static const String twenty_two_mp_sharp = 'twenty_two_mp_sharp'; + static const String two_k = 'two_k'; + static const String two_k_outlined = 'two_k_outlined'; + static const String two_k_plus = 'two_k_plus'; + static const String two_k_plus_outlined = 'two_k_plus_outlined'; + static const String two_k_plus_rounded = 'two_k_plus_rounded'; + static const String two_k_plus_sharp = 'two_k_plus_sharp'; + static const String two_k_rounded = 'two_k_rounded'; + static const String two_k_sharp = 'two_k_sharp'; + static const String two_mp = 'two_mp'; + static const String two_mp_outlined = 'two_mp_outlined'; + static const String two_mp_rounded = 'two_mp_rounded'; + static const String two_mp_sharp = 'two_mp_sharp'; + static const String two_wheeler = 'two_wheeler'; + static const String two_wheeler_outlined = 'two_wheeler_outlined'; + static const String two_wheeler_rounded = 'two_wheeler_rounded'; + static const String two_wheeler_sharp = 'two_wheeler_sharp'; + static const String type_specimen = 'type_specimen'; + static const String type_specimen_outlined = 'type_specimen_outlined'; + static const String type_specimen_rounded = 'type_specimen_rounded'; + static const String type_specimen_sharp = 'type_specimen_sharp'; + static const String u_turn_left = 'u_turn_left'; + static const String u_turn_left_outlined = 'u_turn_left_outlined'; + static const String u_turn_left_rounded = 'u_turn_left_rounded'; + static const String u_turn_left_sharp = 'u_turn_left_sharp'; + static const String u_turn_right = 'u_turn_right'; + static const String u_turn_right_outlined = 'u_turn_right_outlined'; + static const String u_turn_right_rounded = 'u_turn_right_rounded'; + static const String u_turn_right_sharp = 'u_turn_right_sharp'; + static const String umbrella = 'umbrella'; + static const String umbrella_outlined = 'umbrella_outlined'; + static const String umbrella_rounded = 'umbrella_rounded'; + static const String umbrella_sharp = 'umbrella_sharp'; + static const String unarchive = 'unarchive'; + static const String unarchive_outlined = 'unarchive_outlined'; + static const String unarchive_rounded = 'unarchive_rounded'; + static const String unarchive_sharp = 'unarchive_sharp'; + static const String undo = 'undo'; + static const String undo_outlined = 'undo_outlined'; + static const String undo_rounded = 'undo_rounded'; + static const String undo_sharp = 'undo_sharp'; + static const String unfold_less = 'unfold_less'; + static const String unfold_less_outlined = 'unfold_less_outlined'; + static const String unfold_less_rounded = 'unfold_less_rounded'; + static const String unfold_less_sharp = 'unfold_less_sharp'; + static const String unfold_more = 'unfold_more'; + static const String unfold_more_outlined = 'unfold_more_outlined'; + static const String unfold_more_rounded = 'unfold_more_rounded'; + static const String unfold_more_sharp = 'unfold_more_sharp'; + static const String unpublished = 'unpublished'; + static const String unpublished_outlined = 'unpublished_outlined'; + static const String unpublished_rounded = 'unpublished_rounded'; + static const String unpublished_sharp = 'unpublished_sharp'; + static const String unsubscribe = 'unsubscribe'; + static const String unsubscribe_outlined = 'unsubscribe_outlined'; + static const String unsubscribe_rounded = 'unsubscribe_rounded'; + static const String unsubscribe_sharp = 'unsubscribe_sharp'; + static const String upcoming = 'upcoming'; + static const String upcoming_outlined = 'upcoming_outlined'; + static const String upcoming_rounded = 'upcoming_rounded'; + static const String upcoming_sharp = 'upcoming_sharp'; + static const String update = 'update'; + static const String update_disabled = 'update_disabled'; + static const String update_disabled_outlined = 'update_disabled_outlined'; + static const String update_disabled_rounded = 'update_disabled_rounded'; + static const String update_disabled_sharp = 'update_disabled_sharp'; + static const String update_outlined = 'update_outlined'; + static const String update_rounded = 'update_rounded'; + static const String update_sharp = 'update_sharp'; + static const String upgrade = 'upgrade'; + static const String upgrade_outlined = 'upgrade_outlined'; + static const String upgrade_rounded = 'upgrade_rounded'; + static const String upgrade_sharp = 'upgrade_sharp'; + static const String upload = 'upload'; + static const String upload_file = 'upload_file'; + static const String upload_file_outlined = 'upload_file_outlined'; + static const String upload_file_rounded = 'upload_file_rounded'; + static const String upload_file_sharp = 'upload_file_sharp'; + static const String upload_outlined = 'upload_outlined'; + static const String upload_rounded = 'upload_rounded'; + static const String upload_sharp = 'upload_sharp'; + static const String usb = 'usb'; + static const String usb_off = 'usb_off'; + static const String usb_off_outlined = 'usb_off_outlined'; + static const String usb_off_rounded = 'usb_off_rounded'; + static const String usb_off_sharp = 'usb_off_sharp'; + static const String usb_outlined = 'usb_outlined'; + static const String usb_rounded = 'usb_rounded'; + static const String usb_sharp = 'usb_sharp'; + static const String vaccines = 'vaccines'; + static const String vaccines_outlined = 'vaccines_outlined'; + static const String vaccines_rounded = 'vaccines_rounded'; + static const String vaccines_sharp = 'vaccines_sharp'; + static const String vape_free = 'vape_free'; + static const String vape_free_outlined = 'vape_free_outlined'; + static const String vape_free_rounded = 'vape_free_rounded'; + static const String vape_free_sharp = 'vape_free_sharp'; + static const String vaping_rooms = 'vaping_rooms'; + static const String vaping_rooms_outlined = 'vaping_rooms_outlined'; + static const String vaping_rooms_rounded = 'vaping_rooms_rounded'; + static const String vaping_rooms_sharp = 'vaping_rooms_sharp'; + static const String verified = 'verified'; + static const String verified_outlined = 'verified_outlined'; + static const String verified_rounded = 'verified_rounded'; + static const String verified_sharp = 'verified_sharp'; + static const String verified_user = 'verified_user'; + static const String verified_user_outlined = 'verified_user_outlined'; + static const String verified_user_rounded = 'verified_user_rounded'; + static const String verified_user_sharp = 'verified_user_sharp'; + static const String vertical_align_bottom = 'vertical_align_bottom'; + static const String vertical_align_bottom_outlined = + 'vertical_align_bottom_outlined'; + static const String vertical_align_bottom_rounded = + 'vertical_align_bottom_rounded'; + static const String vertical_align_bottom_sharp = + 'vertical_align_bottom_sharp'; + static const String vertical_align_center = 'vertical_align_center'; + static const String vertical_align_center_outlined = + 'vertical_align_center_outlined'; + static const String vertical_align_center_rounded = + 'vertical_align_center_rounded'; + static const String vertical_align_center_sharp = + 'vertical_align_center_sharp'; + static const String vertical_align_top = 'vertical_align_top'; + static const String vertical_align_top_outlined = + 'vertical_align_top_outlined'; + static const String vertical_align_top_rounded = 'vertical_align_top_rounded'; + static const String vertical_align_top_sharp = 'vertical_align_top_sharp'; + static const String vertical_distribute = 'vertical_distribute'; + static const String vertical_distribute_outlined = + 'vertical_distribute_outlined'; + static const String vertical_distribute_rounded = + 'vertical_distribute_rounded'; + static const String vertical_distribute_sharp = 'vertical_distribute_sharp'; + static const String vertical_shades = 'vertical_shades'; + static const String vertical_shades_closed = 'vertical_shades_closed'; + static const String vertical_shades_closed_outlined = + 'vertical_shades_closed_outlined'; + static const String vertical_shades_closed_rounded = + 'vertical_shades_closed_rounded'; + static const String vertical_shades_closed_sharp = + 'vertical_shades_closed_sharp'; + static const String vertical_shades_outlined = 'vertical_shades_outlined'; + static const String vertical_shades_rounded = 'vertical_shades_rounded'; + static const String vertical_shades_sharp = 'vertical_shades_sharp'; + static const String vertical_split = 'vertical_split'; + static const String vertical_split_outlined = 'vertical_split_outlined'; + static const String vertical_split_rounded = 'vertical_split_rounded'; + static const String vertical_split_sharp = 'vertical_split_sharp'; + static const String vibration = 'vibration'; + static const String vibration_outlined = 'vibration_outlined'; + static const String vibration_rounded = 'vibration_rounded'; + static const String vibration_sharp = 'vibration_sharp'; + static const String video_call = 'video_call'; + static const String video_call_outlined = 'video_call_outlined'; + static const String video_call_rounded = 'video_call_rounded'; + static const String video_call_sharp = 'video_call_sharp'; + static const String video_camera_back = 'video_camera_back'; + static const String video_camera_back_outlined = 'video_camera_back_outlined'; + static const String video_camera_back_rounded = 'video_camera_back_rounded'; + static const String video_camera_back_sharp = 'video_camera_back_sharp'; + static const String video_camera_front = 'video_camera_front'; + static const String video_camera_front_outlined = + 'video_camera_front_outlined'; + static const String video_camera_front_rounded = 'video_camera_front_rounded'; + static const String video_camera_front_sharp = 'video_camera_front_sharp'; + static const String video_collection = 'video_collection'; + static const String video_collection_outlined = 'video_collection_outlined'; + static const String video_collection_rounded = 'video_collection_rounded'; + static const String video_collection_sharp = 'video_collection_sharp'; + static const String video_file = 'video_file'; + static const String video_file_outlined = 'video_file_outlined'; + static const String video_file_rounded = 'video_file_rounded'; + static const String video_file_sharp = 'video_file_sharp'; + static const String video_label = 'video_label'; + static const String video_label_outlined = 'video_label_outlined'; + static const String video_label_rounded = 'video_label_rounded'; + static const String video_label_sharp = 'video_label_sharp'; + static const String video_library = 'video_library'; + static const String video_library_outlined = 'video_library_outlined'; + static const String video_library_rounded = 'video_library_rounded'; + static const String video_library_sharp = 'video_library_sharp'; + static const String video_settings = 'video_settings'; + static const String video_settings_outlined = 'video_settings_outlined'; + static const String video_settings_rounded = 'video_settings_rounded'; + static const String video_settings_sharp = 'video_settings_sharp'; + static const String video_stable = 'video_stable'; + static const String video_stable_outlined = 'video_stable_outlined'; + static const String video_stable_rounded = 'video_stable_rounded'; + static const String video_stable_sharp = 'video_stable_sharp'; + static const String videocam = 'videocam'; + static const String videocam_off = 'videocam_off'; + static const String videocam_off_outlined = 'videocam_off_outlined'; + static const String videocam_off_rounded = 'videocam_off_rounded'; + static const String videocam_off_sharp = 'videocam_off_sharp'; + static const String videocam_outlined = 'videocam_outlined'; + static const String videocam_rounded = 'videocam_rounded'; + static const String videocam_sharp = 'videocam_sharp'; + static const String videogame_asset = 'videogame_asset'; + static const String videogame_asset_off = 'videogame_asset_off'; + static const String videogame_asset_off_outlined = + 'videogame_asset_off_outlined'; + static const String videogame_asset_off_rounded = + 'videogame_asset_off_rounded'; + static const String videogame_asset_off_sharp = 'videogame_asset_off_sharp'; + static const String videogame_asset_outlined = 'videogame_asset_outlined'; + static const String videogame_asset_rounded = 'videogame_asset_rounded'; + static const String videogame_asset_sharp = 'videogame_asset_sharp'; + static const String view_agenda = 'view_agenda'; + static const String view_agenda_outlined = 'view_agenda_outlined'; + static const String view_agenda_rounded = 'view_agenda_rounded'; + static const String view_agenda_sharp = 'view_agenda_sharp'; + static const String view_array = 'view_array'; + static const String view_array_outlined = 'view_array_outlined'; + static const String view_array_rounded = 'view_array_rounded'; + static const String view_array_sharp = 'view_array_sharp'; + static const String view_carousel = 'view_carousel'; + static const String view_carousel_outlined = 'view_carousel_outlined'; + static const String view_carousel_rounded = 'view_carousel_rounded'; + static const String view_carousel_sharp = 'view_carousel_sharp'; + static const String view_column = 'view_column'; + static const String view_column_outlined = 'view_column_outlined'; + static const String view_column_rounded = 'view_column_rounded'; + static const String view_column_sharp = 'view_column_sharp'; + static const String view_comfortable = 'view_comfortable'; + static const String view_comfortable_outlined = 'view_comfortable_outlined'; + static const String view_comfortable_rounded = 'view_comfortable_rounded'; + static const String view_comfortable_sharp = 'view_comfortable_sharp'; + static const String view_comfy = 'view_comfy'; + static const String view_comfy_alt = 'view_comfy_alt'; + static const String view_comfy_alt_outlined = 'view_comfy_alt_outlined'; + static const String view_comfy_alt_rounded = 'view_comfy_alt_rounded'; + static const String view_comfy_alt_sharp = 'view_comfy_alt_sharp'; + static const String view_comfy_outlined = 'view_comfy_outlined'; + static const String view_comfy_rounded = 'view_comfy_rounded'; + static const String view_comfy_sharp = 'view_comfy_sharp'; + static const String view_compact = 'view_compact'; + static const String view_compact_alt = 'view_compact_alt'; + static const String view_compact_alt_outlined = 'view_compact_alt_outlined'; + static const String view_compact_alt_rounded = 'view_compact_alt_rounded'; + static const String view_compact_alt_sharp = 'view_compact_alt_sharp'; + static const String view_compact_outlined = 'view_compact_outlined'; + static const String view_compact_rounded = 'view_compact_rounded'; + static const String view_compact_sharp = 'view_compact_sharp'; + static const String view_cozy = 'view_cozy'; + static const String view_cozy_outlined = 'view_cozy_outlined'; + static const String view_cozy_rounded = 'view_cozy_rounded'; + static const String view_cozy_sharp = 'view_cozy_sharp'; + static const String view_day = 'view_day'; + static const String view_day_outlined = 'view_day_outlined'; + static const String view_day_rounded = 'view_day_rounded'; + static const String view_day_sharp = 'view_day_sharp'; + static const String view_headline = 'view_headline'; + static const String view_headline_outlined = 'view_headline_outlined'; + static const String view_headline_rounded = 'view_headline_rounded'; + static const String view_headline_sharp = 'view_headline_sharp'; + static const String view_in_ar = 'view_in_ar'; + static const String view_in_ar_outlined = 'view_in_ar_outlined'; + static const String view_in_ar_rounded = 'view_in_ar_rounded'; + static const String view_in_ar_sharp = 'view_in_ar_sharp'; + static const String view_kanban = 'view_kanban'; + static const String view_kanban_outlined = 'view_kanban_outlined'; + static const String view_kanban_rounded = 'view_kanban_rounded'; + static const String view_kanban_sharp = 'view_kanban_sharp'; + static const String view_list = 'view_list'; + static const String view_list_outlined = 'view_list_outlined'; + static const String view_list_rounded = 'view_list_rounded'; + static const String view_list_sharp = 'view_list_sharp'; + static const String view_module = 'view_module'; + static const String view_module_outlined = 'view_module_outlined'; + static const String view_module_rounded = 'view_module_rounded'; + static const String view_module_sharp = 'view_module_sharp'; + static const String view_quilt = 'view_quilt'; + static const String view_quilt_outlined = 'view_quilt_outlined'; + static const String view_quilt_rounded = 'view_quilt_rounded'; + static const String view_quilt_sharp = 'view_quilt_sharp'; + static const String view_sidebar = 'view_sidebar'; + static const String view_sidebar_outlined = 'view_sidebar_outlined'; + static const String view_sidebar_rounded = 'view_sidebar_rounded'; + static const String view_sidebar_sharp = 'view_sidebar_sharp'; + static const String view_stream = 'view_stream'; + static const String view_stream_outlined = 'view_stream_outlined'; + static const String view_stream_rounded = 'view_stream_rounded'; + static const String view_stream_sharp = 'view_stream_sharp'; + static const String view_timeline = 'view_timeline'; + static const String view_timeline_outlined = 'view_timeline_outlined'; + static const String view_timeline_rounded = 'view_timeline_rounded'; + static const String view_timeline_sharp = 'view_timeline_sharp'; + static const String view_week = 'view_week'; + static const String view_week_outlined = 'view_week_outlined'; + static const String view_week_rounded = 'view_week_rounded'; + static const String view_week_sharp = 'view_week_sharp'; + static const String vignette = 'vignette'; + static const String vignette_outlined = 'vignette_outlined'; + static const String vignette_rounded = 'vignette_rounded'; + static const String vignette_sharp = 'vignette_sharp'; + static const String villa = 'villa'; + static const String villa_outlined = 'villa_outlined'; + static const String villa_rounded = 'villa_rounded'; + static const String villa_sharp = 'villa_sharp'; + static const String visibility = 'visibility'; + static const String visibility_off = 'visibility_off'; + static const String visibility_off_outlined = 'visibility_off_outlined'; + static const String visibility_off_rounded = 'visibility_off_rounded'; + static const String visibility_off_sharp = 'visibility_off_sharp'; + static const String visibility_outlined = 'visibility_outlined'; + static const String visibility_rounded = 'visibility_rounded'; + static const String visibility_sharp = 'visibility_sharp'; + static const String voice_chat = 'voice_chat'; + static const String voice_chat_outlined = 'voice_chat_outlined'; + static const String voice_chat_rounded = 'voice_chat_rounded'; + static const String voice_chat_sharp = 'voice_chat_sharp'; + static const String voice_over_off = 'voice_over_off'; + static const String voice_over_off_outlined = 'voice_over_off_outlined'; + static const String voice_over_off_rounded = 'voice_over_off_rounded'; + static const String voice_over_off_sharp = 'voice_over_off_sharp'; + static const String voicemail = 'voicemail'; + static const String voicemail_outlined = 'voicemail_outlined'; + static const String voicemail_rounded = 'voicemail_rounded'; + static const String voicemail_sharp = 'voicemail_sharp'; + static const String volcano = 'volcano'; + static const String volcano_outlined = 'volcano_outlined'; + static const String volcano_rounded = 'volcano_rounded'; + static const String volcano_sharp = 'volcano_sharp'; + static const String volume_down = 'volume_down'; + static const String volume_down_alt = 'volume_down_alt'; + static const String volume_down_outlined = 'volume_down_outlined'; + static const String volume_down_rounded = 'volume_down_rounded'; + static const String volume_down_sharp = 'volume_down_sharp'; + static const String volume_mute = 'volume_mute'; + static const String volume_mute_outlined = 'volume_mute_outlined'; + static const String volume_mute_rounded = 'volume_mute_rounded'; + static const String volume_mute_sharp = 'volume_mute_sharp'; + static const String volume_off = 'volume_off'; + static const String volume_off_outlined = 'volume_off_outlined'; + static const String volume_off_rounded = 'volume_off_rounded'; + static const String volume_off_sharp = 'volume_off_sharp'; + static const String volume_up = 'volume_up'; + static const String volume_up_outlined = 'volume_up_outlined'; + static const String volume_up_rounded = 'volume_up_rounded'; + static const String volume_up_sharp = 'volume_up_sharp'; + static const String volunteer_activism = 'volunteer_activism'; + static const String volunteer_activism_outlined = + 'volunteer_activism_outlined'; + static const String volunteer_activism_rounded = 'volunteer_activism_rounded'; + static const String volunteer_activism_sharp = 'volunteer_activism_sharp'; + static const String vpn_key = 'vpn_key'; + static const String vpn_key_off = 'vpn_key_off'; + static const String vpn_key_off_outlined = 'vpn_key_off_outlined'; + static const String vpn_key_off_rounded = 'vpn_key_off_rounded'; + static const String vpn_key_off_sharp = 'vpn_key_off_sharp'; + static const String vpn_key_outlined = 'vpn_key_outlined'; + static const String vpn_key_rounded = 'vpn_key_rounded'; + static const String vpn_key_sharp = 'vpn_key_sharp'; + static const String vpn_lock = 'vpn_lock'; + static const String vpn_lock_outlined = 'vpn_lock_outlined'; + static const String vpn_lock_rounded = 'vpn_lock_rounded'; + static const String vpn_lock_sharp = 'vpn_lock_sharp'; + static const String vrpano = 'vrpano'; + static const String vrpano_outlined = 'vrpano_outlined'; + static const String vrpano_rounded = 'vrpano_rounded'; + static const String vrpano_sharp = 'vrpano_sharp'; + static const String wallet = 'wallet'; + static const String wallet_giftcard = 'wallet_giftcard'; + static const String wallet_giftcard_outlined = 'wallet_giftcard_outlined'; + static const String wallet_giftcard_rounded = 'wallet_giftcard_rounded'; + static const String wallet_giftcard_sharp = 'wallet_giftcard_sharp'; + static const String wallet_membership = 'wallet_membership'; + static const String wallet_membership_outlined = 'wallet_membership_outlined'; + static const String wallet_membership_rounded = 'wallet_membership_rounded'; + static const String wallet_membership_sharp = 'wallet_membership_sharp'; + static const String wallet_outlined = 'wallet_outlined'; + static const String wallet_rounded = 'wallet_rounded'; + static const String wallet_sharp = 'wallet_sharp'; + static const String wallet_travel = 'wallet_travel'; + static const String wallet_travel_outlined = 'wallet_travel_outlined'; + static const String wallet_travel_rounded = 'wallet_travel_rounded'; + static const String wallet_travel_sharp = 'wallet_travel_sharp'; + static const String wallpaper = 'wallpaper'; + static const String wallpaper_outlined = 'wallpaper_outlined'; + static const String wallpaper_rounded = 'wallpaper_rounded'; + static const String wallpaper_sharp = 'wallpaper_sharp'; + static const String warehouse = 'warehouse'; + static const String warehouse_outlined = 'warehouse_outlined'; + static const String warehouse_rounded = 'warehouse_rounded'; + static const String warehouse_sharp = 'warehouse_sharp'; + static const String warning = 'warning'; + static const String warning_amber = 'warning_amber'; + static const String warning_amber_outlined = 'warning_amber_outlined'; + static const String warning_amber_rounded = 'warning_amber_rounded'; + static const String warning_amber_sharp = 'warning_amber_sharp'; + static const String warning_outlined = 'warning_outlined'; + static const String warning_rounded = 'warning_rounded'; + static const String warning_sharp = 'warning_sharp'; + static const String wash = 'wash'; + static const String wash_outlined = 'wash_outlined'; + static const String wash_rounded = 'wash_rounded'; + static const String wash_sharp = 'wash_sharp'; + static const String watch = 'watch'; + static const String watch_later = 'watch_later'; + static const String watch_later_outlined = 'watch_later_outlined'; + static const String watch_later_rounded = 'watch_later_rounded'; + static const String watch_later_sharp = 'watch_later_sharp'; + static const String watch_off = 'watch_off'; + static const String watch_off_outlined = 'watch_off_outlined'; + static const String watch_off_rounded = 'watch_off_rounded'; + static const String watch_off_sharp = 'watch_off_sharp'; + static const String watch_outlined = 'watch_outlined'; + static const String watch_rounded = 'watch_rounded'; + static const String watch_sharp = 'watch_sharp'; + static const String water = 'water'; + static const String water_damage = 'water_damage'; + static const String water_damage_outlined = 'water_damage_outlined'; + static const String water_damage_rounded = 'water_damage_rounded'; + static const String water_damage_sharp = 'water_damage_sharp'; + static const String water_drop = 'water_drop'; + static const String water_drop_outlined = 'water_drop_outlined'; + static const String water_drop_rounded = 'water_drop_rounded'; + static const String water_drop_sharp = 'water_drop_sharp'; + static const String water_outlined = 'water_outlined'; + static const String water_rounded = 'water_rounded'; + static const String water_sharp = 'water_sharp'; + static const String waterfall_chart = 'waterfall_chart'; + static const String waterfall_chart_outlined = 'waterfall_chart_outlined'; + static const String waterfall_chart_rounded = 'waterfall_chart_rounded'; + static const String waterfall_chart_sharp = 'waterfall_chart_sharp'; + static const String waves = 'waves'; + static const String waves_outlined = 'waves_outlined'; + static const String waves_rounded = 'waves_rounded'; + static const String waves_sharp = 'waves_sharp'; + static const String waving_hand = 'waving_hand'; + static const String waving_hand_outlined = 'waving_hand_outlined'; + static const String waving_hand_rounded = 'waving_hand_rounded'; + static const String waving_hand_sharp = 'waving_hand_sharp'; + static const String wb_auto = 'wb_auto'; + static const String wb_auto_outlined = 'wb_auto_outlined'; + static const String wb_auto_rounded = 'wb_auto_rounded'; + static const String wb_auto_sharp = 'wb_auto_sharp'; + static const String wb_cloudy = 'wb_cloudy'; + static const String wb_cloudy_outlined = 'wb_cloudy_outlined'; + static const String wb_cloudy_rounded = 'wb_cloudy_rounded'; + static const String wb_cloudy_sharp = 'wb_cloudy_sharp'; + static const String wb_incandescent = 'wb_incandescent'; + static const String wb_incandescent_outlined = 'wb_incandescent_outlined'; + static const String wb_incandescent_rounded = 'wb_incandescent_rounded'; + static const String wb_incandescent_sharp = 'wb_incandescent_sharp'; + static const String wb_iridescent = 'wb_iridescent'; + static const String wb_iridescent_outlined = 'wb_iridescent_outlined'; + static const String wb_iridescent_rounded = 'wb_iridescent_rounded'; + static const String wb_iridescent_sharp = 'wb_iridescent_sharp'; + static const String wb_shade = 'wb_shade'; + static const String wb_shade_outlined = 'wb_shade_outlined'; + static const String wb_shade_rounded = 'wb_shade_rounded'; + static const String wb_shade_sharp = 'wb_shade_sharp'; + static const String wb_sunny = 'wb_sunny'; + static const String wb_sunny_outlined = 'wb_sunny_outlined'; + static const String wb_sunny_rounded = 'wb_sunny_rounded'; + static const String wb_sunny_sharp = 'wb_sunny_sharp'; + static const String wb_twighlight = 'wb_twighlight'; + static const String wb_twilight = 'wb_twilight'; + static const String wb_twilight_outlined = 'wb_twilight_outlined'; + static const String wb_twilight_rounded = 'wb_twilight_rounded'; + static const String wb_twilight_sharp = 'wb_twilight_sharp'; + static const String wc = 'wc'; + static const String wc_outlined = 'wc_outlined'; + static const String wc_rounded = 'wc_rounded'; + static const String wc_sharp = 'wc_sharp'; + static const String web = 'web'; + static const String web_asset = 'web_asset'; + static const String web_asset_off = 'web_asset_off'; + static const String web_asset_off_outlined = 'web_asset_off_outlined'; + static const String web_asset_off_rounded = 'web_asset_off_rounded'; + static const String web_asset_off_sharp = 'web_asset_off_sharp'; + static const String web_asset_outlined = 'web_asset_outlined'; + static const String web_asset_rounded = 'web_asset_rounded'; + static const String web_asset_sharp = 'web_asset_sharp'; + static const String web_outlined = 'web_outlined'; + static const String web_rounded = 'web_rounded'; + static const String web_sharp = 'web_sharp'; + static const String web_stories = 'web_stories'; + static const String webhook = 'webhook'; + static const String webhook_outlined = 'webhook_outlined'; + static const String webhook_rounded = 'webhook_rounded'; + static const String webhook_sharp = 'webhook_sharp'; + static const String wechat = 'wechat'; + static const String wechat_outlined = 'wechat_outlined'; + static const String wechat_rounded = 'wechat_rounded'; + static const String wechat_sharp = 'wechat_sharp'; + static const String weekend = 'weekend'; + static const String weekend_outlined = 'weekend_outlined'; + static const String weekend_rounded = 'weekend_rounded'; + static const String weekend_sharp = 'weekend_sharp'; + static const String west = 'west'; + static const String west_outlined = 'west_outlined'; + static const String west_rounded = 'west_rounded'; + static const String west_sharp = 'west_sharp'; + static const String whatshot = 'whatshot'; + static const String whatshot_outlined = 'whatshot_outlined'; + static const String whatshot_rounded = 'whatshot_rounded'; + static const String whatshot_sharp = 'whatshot_sharp'; + static const String wheelchair_pickup = 'wheelchair_pickup'; + static const String wheelchair_pickup_outlined = 'wheelchair_pickup_outlined'; + static const String wheelchair_pickup_rounded = 'wheelchair_pickup_rounded'; + static const String wheelchair_pickup_sharp = 'wheelchair_pickup_sharp'; + static const String where_to_vote = 'where_to_vote'; + static const String where_to_vote_outlined = 'where_to_vote_outlined'; + static const String where_to_vote_rounded = 'where_to_vote_rounded'; + static const String where_to_vote_sharp = 'where_to_vote_sharp'; + static const String widgets = 'widgets'; + static const String widgets_outlined = 'widgets_outlined'; + static const String widgets_rounded = 'widgets_rounded'; + static const String widgets_sharp = 'widgets_sharp'; + static const String width_full = 'width_full'; + static const String width_full_outlined = 'width_full_outlined'; + static const String width_full_rounded = 'width_full_rounded'; + static const String width_full_sharp = 'width_full_sharp'; + static const String width_normal = 'width_normal'; + static const String width_normal_outlined = 'width_normal_outlined'; + static const String width_normal_rounded = 'width_normal_rounded'; + static const String width_normal_sharp = 'width_normal_sharp'; + static const String width_wide = 'width_wide'; + static const String width_wide_outlined = 'width_wide_outlined'; + static const String width_wide_rounded = 'width_wide_rounded'; + static const String width_wide_sharp = 'width_wide_sharp'; + static const String wifi = 'wifi'; + static const String wifi_1_bar = 'wifi_1_bar'; + static const String wifi_1_bar_outlined = 'wifi_1_bar_outlined'; + static const String wifi_1_bar_rounded = 'wifi_1_bar_rounded'; + static const String wifi_1_bar_sharp = 'wifi_1_bar_sharp'; + static const String wifi_2_bar = 'wifi_2_bar'; + static const String wifi_2_bar_outlined = 'wifi_2_bar_outlined'; + static const String wifi_2_bar_rounded = 'wifi_2_bar_rounded'; + static const String wifi_2_bar_sharp = 'wifi_2_bar_sharp'; + static const String wifi_calling = 'wifi_calling'; + static const String wifi_calling_3 = 'wifi_calling_3'; + static const String wifi_calling_3_outlined = 'wifi_calling_3_outlined'; + static const String wifi_calling_3_rounded = 'wifi_calling_3_rounded'; + static const String wifi_calling_3_sharp = 'wifi_calling_3_sharp'; + static const String wifi_calling_outlined = 'wifi_calling_outlined'; + static const String wifi_calling_rounded = 'wifi_calling_rounded'; + static const String wifi_calling_sharp = 'wifi_calling_sharp'; + static const String wifi_channel = 'wifi_channel'; + static const String wifi_channel_outlined = 'wifi_channel_outlined'; + static const String wifi_channel_rounded = 'wifi_channel_rounded'; + static const String wifi_channel_sharp = 'wifi_channel_sharp'; + static const String wifi_find = 'wifi_find'; + static const String wifi_find_outlined = 'wifi_find_outlined'; + static const String wifi_find_rounded = 'wifi_find_rounded'; + static const String wifi_find_sharp = 'wifi_find_sharp'; + static const String wifi_lock = 'wifi_lock'; + static const String wifi_lock_outlined = 'wifi_lock_outlined'; + static const String wifi_lock_rounded = 'wifi_lock_rounded'; + static const String wifi_lock_sharp = 'wifi_lock_sharp'; + static const String wifi_off = 'wifi_off'; + static const String wifi_off_outlined = 'wifi_off_outlined'; + static const String wifi_off_rounded = 'wifi_off_rounded'; + static const String wifi_off_sharp = 'wifi_off_sharp'; + static const String wifi_outlined = 'wifi_outlined'; + static const String wifi_password = 'wifi_password'; + static const String wifi_password_outlined = 'wifi_password_outlined'; + static const String wifi_password_rounded = 'wifi_password_rounded'; + static const String wifi_password_sharp = 'wifi_password_sharp'; + static const String wifi_protected_setup = 'wifi_protected_setup'; + static const String wifi_protected_setup_outlined = + 'wifi_protected_setup_outlined'; + static const String wifi_protected_setup_rounded = + 'wifi_protected_setup_rounded'; + static const String wifi_protected_setup_sharp = 'wifi_protected_setup_sharp'; + static const String wifi_rounded = 'wifi_rounded'; + static const String wifi_sharp = 'wifi_sharp'; + static const String wifi_tethering = 'wifi_tethering'; + static const String wifi_tethering_error = 'wifi_tethering_error'; + static const String wifi_tethering_error_outlined = + 'wifi_tethering_error_outlined'; + static const String wifi_tethering_error_rounded = + 'wifi_tethering_error_rounded'; + static const String wifi_tethering_error_rounded_outlined = + 'wifi_tethering_error_rounded_outlined'; + static const String wifi_tethering_error_rounded_rounded = + 'wifi_tethering_error_rounded_rounded'; + static const String wifi_tethering_error_rounded_sharp = + 'wifi_tethering_error_rounded_sharp'; + static const String wifi_tethering_error_sharp = 'wifi_tethering_error_sharp'; + static const String wifi_tethering_off = 'wifi_tethering_off'; + static const String wifi_tethering_off_outlined = + 'wifi_tethering_off_outlined'; + static const String wifi_tethering_off_rounded = 'wifi_tethering_off_rounded'; + static const String wifi_tethering_off_sharp = 'wifi_tethering_off_sharp'; + static const String wifi_tethering_outlined = 'wifi_tethering_outlined'; + static const String wifi_tethering_rounded = 'wifi_tethering_rounded'; + static const String wifi_tethering_sharp = 'wifi_tethering_sharp'; + static const String wind_power = 'wind_power'; + static const String wind_power_outlined = 'wind_power_outlined'; + static const String wind_power_rounded = 'wind_power_rounded'; + static const String wind_power_sharp = 'wind_power_sharp'; + static const String window = 'window'; + static const String window_outlined = 'window_outlined'; + static const String window_rounded = 'window_rounded'; + static const String window_sharp = 'window_sharp'; + static const String wine_bar = 'wine_bar'; + static const String wine_bar_outlined = 'wine_bar_outlined'; + static const String wine_bar_rounded = 'wine_bar_rounded'; + static const String wine_bar_sharp = 'wine_bar_sharp'; + static const String woman = 'woman'; + static const String woman_outlined = 'woman_outlined'; + static const String woman_rounded = 'woman_rounded'; + static const String woman_sharp = 'woman_sharp'; + static const String woo_commerce = 'woo_commerce'; + static const String woo_commerce_outlined = 'woo_commerce_outlined'; + static const String woo_commerce_rounded = 'woo_commerce_rounded'; + static const String woo_commerce_sharp = 'woo_commerce_sharp'; + static const String wordpress = 'wordpress'; + static const String wordpress_outlined = 'wordpress_outlined'; + static const String wordpress_rounded = 'wordpress_rounded'; + static const String wordpress_sharp = 'wordpress_sharp'; + static const String work = 'work'; + static const String work_history = 'work_history'; + static const String work_history_outlined = 'work_history_outlined'; + static const String work_history_rounded = 'work_history_rounded'; + static const String work_history_sharp = 'work_history_sharp'; + static const String work_off = 'work_off'; + static const String work_off_outlined = 'work_off_outlined'; + static const String work_off_rounded = 'work_off_rounded'; + static const String work_off_sharp = 'work_off_sharp'; + static const String work_outline = 'work_outline'; + static const String work_outline_outlined = 'work_outline_outlined'; + static const String work_outline_rounded = 'work_outline_rounded'; + static const String work_outline_sharp = 'work_outline_sharp'; + static const String work_outlined = 'work_outlined'; + static const String work_rounded = 'work_rounded'; + static const String work_sharp = 'work_sharp'; + static const String workspace_premium = 'workspace_premium'; + static const String workspace_premium_outlined = 'workspace_premium_outlined'; + static const String workspace_premium_rounded = 'workspace_premium_rounded'; + static const String workspace_premium_sharp = 'workspace_premium_sharp'; + static const String workspaces = 'workspaces'; + static const String workspaces_filled = 'workspaces_filled'; + static const String workspaces_outline = 'workspaces_outline'; + static const String workspaces_outlined = 'workspaces_outlined'; + static const String workspaces_rounded = 'workspaces_rounded'; + static const String workspaces_sharp = 'workspaces_sharp'; + static const String wrap_text = 'wrap_text'; + static const String wrap_text_outlined = 'wrap_text_outlined'; + static const String wrap_text_rounded = 'wrap_text_rounded'; + static const String wrap_text_sharp = 'wrap_text_sharp'; + static const String wrong_location = 'wrong_location'; + static const String wrong_location_outlined = 'wrong_location_outlined'; + static const String wrong_location_rounded = 'wrong_location_rounded'; + static const String wrong_location_sharp = 'wrong_location_sharp'; + static const String wysiwyg = 'wysiwyg'; + static const String wysiwyg_outlined = 'wysiwyg_outlined'; + static const String wysiwyg_rounded = 'wysiwyg_rounded'; + static const String wysiwyg_sharp = 'wysiwyg_sharp'; + static const String yard = 'yard'; + static const String yard_outlined = 'yard_outlined'; + static const String yard_rounded = 'yard_rounded'; + static const String yard_sharp = 'yard_sharp'; + static const String youtube_searched_for = 'youtube_searched_for'; + static const String youtube_searched_for_outlined = + 'youtube_searched_for_outlined'; + static const String youtube_searched_for_rounded = + 'youtube_searched_for_rounded'; + static const String youtube_searched_for_sharp = 'youtube_searched_for_sharp'; + static const String zoom_in = 'zoom_in'; + static const String zoom_in_map = 'zoom_in_map'; + static const String zoom_in_map_outlined = 'zoom_in_map_outlined'; + static const String zoom_in_map_rounded = 'zoom_in_map_rounded'; + static const String zoom_in_map_sharp = 'zoom_in_map_sharp'; + static const String zoom_in_outlined = 'zoom_in_outlined'; + static const String zoom_in_rounded = 'zoom_in_rounded'; + static const String zoom_in_sharp = 'zoom_in_sharp'; + static const String zoom_out = 'zoom_out'; + static const String zoom_out_map = 'zoom_out_map'; + static const String zoom_out_map_outlined = 'zoom_out_map_outlined'; + static const String zoom_out_map_rounded = 'zoom_out_map_rounded'; + static const String zoom_out_map_sharp = 'zoom_out_map_sharp'; + static const String zoom_out_outlined = 'zoom_out_outlined'; + static const String zoom_out_rounded = 'zoom_out_rounded'; + static const String zoom_out_sharp = 'zoom_out_sharp'; +} + +class StacCupertinoIcons { + static const String add = 'add'; + static const String add_circled = 'add_circled'; + static const String add_circled_solid = 'add_circled_solid'; + static const String airplane = 'airplane'; + static const String alarm = 'alarm'; + static const String alarm_fill = 'alarm_fill'; + static const String alt = 'alt'; + static const String ant = 'ant'; + static const String ant_circle = 'ant_circle'; + static const String ant_circle_fill = 'ant_circle_fill'; + static const String ant_fill = 'ant_fill'; + static const String antenna_radiowaves_left_right = + 'antenna_radiowaves_left_right'; + static const String app = 'app'; + static const String app_badge = 'app_badge'; + static const String app_badge_fill = 'app_badge_fill'; + static const String app_fill = 'app_fill'; + static const String archivebox = 'archivebox'; + static const String archivebox_fill = 'archivebox_fill'; + static const String arrow_2_circlepath = 'arrow_2_circlepath'; + static const String arrow_2_circlepath_circle = 'arrow_2_circlepath_circle'; + static const String arrow_2_circlepath_circle_fill = + 'arrow_2_circlepath_circle_fill'; + static const String arrow_2_squarepath = 'arrow_2_squarepath'; + static const String arrow_3_trianglepath = 'arrow_3_trianglepath'; + static const String arrow_branch = 'arrow_branch'; + static const String arrow_clockwise = 'arrow_clockwise'; + static const String arrow_clockwise_circle = 'arrow_clockwise_circle'; + static const String arrow_clockwise_circle_fill = + 'arrow_clockwise_circle_fill'; + static const String arrow_counterclockwise = 'arrow_counterclockwise'; + static const String arrow_counterclockwise_circle = + 'arrow_counterclockwise_circle'; + static const String arrow_counterclockwise_circle_fill = + 'arrow_counterclockwise_circle_fill'; + static const String arrow_down = 'arrow_down'; + static const String arrow_down_circle = 'arrow_down_circle'; + static const String arrow_down_circle_fill = 'arrow_down_circle_fill'; + static const String arrow_down_doc = 'arrow_down_doc'; + static const String arrow_down_doc_fill = 'arrow_down_doc_fill'; + static const String arrow_down_left = 'arrow_down_left'; + static const String arrow_down_left_circle = 'arrow_down_left_circle'; + static const String arrow_down_left_circle_fill = + 'arrow_down_left_circle_fill'; + static const String arrow_down_left_square = 'arrow_down_left_square'; + static const String arrow_down_left_square_fill = + 'arrow_down_left_square_fill'; + static const String arrow_down_right = 'arrow_down_right'; + static const String arrow_down_right_arrow_up_left = + 'arrow_down_right_arrow_up_left'; + static const String arrow_down_right_circle = 'arrow_down_right_circle'; + static const String arrow_down_right_circle_fill = + 'arrow_down_right_circle_fill'; + static const String arrow_down_right_square = 'arrow_down_right_square'; + static const String arrow_down_right_square_fill = + 'arrow_down_right_square_fill'; + static const String arrow_down_square = 'arrow_down_square'; + static const String arrow_down_square_fill = 'arrow_down_square_fill'; + static const String arrow_down_to_line = 'arrow_down_to_line'; + static const String arrow_down_to_line_alt = 'arrow_down_to_line_alt'; + static const String arrow_left = 'arrow_left'; + static const String arrow_left_circle = 'arrow_left_circle'; + static const String arrow_left_circle_fill = 'arrow_left_circle_fill'; + static const String arrow_left_right = 'arrow_left_right'; + static const String arrow_left_right_circle = 'arrow_left_right_circle'; + static const String arrow_left_right_circle_fill = + 'arrow_left_right_circle_fill'; + static const String arrow_left_right_square = 'arrow_left_right_square'; + static const String arrow_left_right_square_fill = + 'arrow_left_right_square_fill'; + static const String arrow_left_square = 'arrow_left_square'; + static const String arrow_left_square_fill = 'arrow_left_square_fill'; + static const String arrow_left_to_line = 'arrow_left_to_line'; + static const String arrow_left_to_line_alt = 'arrow_left_to_line_alt'; + static const String arrow_merge = 'arrow_merge'; + static const String arrow_right = 'arrow_right'; + static const String arrow_right_arrow_left = 'arrow_right_arrow_left'; + static const String arrow_right_arrow_left_circle = + 'arrow_right_arrow_left_circle'; + static const String arrow_right_arrow_left_circle_fill = + 'arrow_right_arrow_left_circle_fill'; + static const String arrow_right_arrow_left_square = + 'arrow_right_arrow_left_square'; + static const String arrow_right_arrow_left_square_fill = + 'arrow_right_arrow_left_square_fill'; + static const String arrow_right_circle = 'arrow_right_circle'; + static const String arrow_right_circle_fill = 'arrow_right_circle_fill'; + static const String arrow_right_square = 'arrow_right_square'; + static const String arrow_right_square_fill = 'arrow_right_square_fill'; + static const String arrow_right_to_line = 'arrow_right_to_line'; + static const String arrow_right_to_line_alt = 'arrow_right_to_line_alt'; + static const String arrow_swap = 'arrow_swap'; + static const String arrow_turn_down_left = 'arrow_turn_down_left'; + static const String arrow_turn_down_right = 'arrow_turn_down_right'; + static const String arrow_turn_left_down = 'arrow_turn_left_down'; + static const String arrow_turn_left_up = 'arrow_turn_left_up'; + static const String arrow_turn_right_down = 'arrow_turn_right_down'; + static const String arrow_turn_right_up = 'arrow_turn_right_up'; + static const String arrow_turn_up_left = 'arrow_turn_up_left'; + static const String arrow_turn_up_right = 'arrow_turn_up_right'; + static const String arrow_up = 'arrow_up'; + static const String arrow_up_arrow_down = 'arrow_up_arrow_down'; + static const String arrow_up_arrow_down_circle = 'arrow_up_arrow_down_circle'; + static const String arrow_up_arrow_down_circle_fill = + 'arrow_up_arrow_down_circle_fill'; + static const String arrow_up_arrow_down_square = 'arrow_up_arrow_down_square'; + static const String arrow_up_arrow_down_square_fill = + 'arrow_up_arrow_down_square_fill'; + static const String arrow_up_bin = 'arrow_up_bin'; + static const String arrow_up_bin_fill = 'arrow_up_bin_fill'; + static const String arrow_up_circle = 'arrow_up_circle'; + static const String arrow_up_circle_fill = 'arrow_up_circle_fill'; + static const String arrow_up_doc = 'arrow_up_doc'; + static const String arrow_up_doc_fill = 'arrow_up_doc_fill'; + static const String arrow_up_down = 'arrow_up_down'; + static const String arrow_up_down_circle = 'arrow_up_down_circle'; + static const String arrow_up_down_circle_fill = 'arrow_up_down_circle_fill'; + static const String arrow_up_down_square = 'arrow_up_down_square'; + static const String arrow_up_down_square_fill = 'arrow_up_down_square_fill'; + static const String arrow_up_left = 'arrow_up_left'; + static const String arrow_up_left_arrow_down_right = + 'arrow_up_left_arrow_down_right'; + static const String arrow_up_left_circle = 'arrow_up_left_circle'; + static const String arrow_up_left_circle_fill = 'arrow_up_left_circle_fill'; + static const String arrow_up_left_square = 'arrow_up_left_square'; + static const String arrow_up_left_square_fill = 'arrow_up_left_square_fill'; + static const String arrow_up_right = 'arrow_up_right'; + static const String arrow_up_right_circle = 'arrow_up_right_circle'; + static const String arrow_up_right_circle_fill = 'arrow_up_right_circle_fill'; + static const String arrow_up_right_diamond = 'arrow_up_right_diamond'; + static const String arrow_up_right_diamond_fill = + 'arrow_up_right_diamond_fill'; + static const String arrow_up_right_square = 'arrow_up_right_square'; + static const String arrow_up_right_square_fill = 'arrow_up_right_square_fill'; + static const String arrow_up_square = 'arrow_up_square'; + static const String arrow_up_square_fill = 'arrow_up_square_fill'; + static const String arrow_up_to_line = 'arrow_up_to_line'; + static const String arrow_up_to_line_alt = 'arrow_up_to_line_alt'; + static const String arrow_uturn_down = 'arrow_uturn_down'; + static const String arrow_uturn_down_circle = 'arrow_uturn_down_circle'; + static const String arrow_uturn_down_circle_fill = + 'arrow_uturn_down_circle_fill'; + static const String arrow_uturn_down_square = 'arrow_uturn_down_square'; + static const String arrow_uturn_down_square_fill = + 'arrow_uturn_down_square_fill'; + static const String arrow_uturn_left = 'arrow_uturn_left'; + static const String arrow_uturn_left_circle = 'arrow_uturn_left_circle'; + static const String arrow_uturn_left_circle_fill = + 'arrow_uturn_left_circle_fill'; + static const String arrow_uturn_left_square = 'arrow_uturn_left_square'; + static const String arrow_uturn_left_square_fill = + 'arrow_uturn_left_square_fill'; + static const String arrow_uturn_right = 'arrow_uturn_right'; + static const String arrow_uturn_right_circle = 'arrow_uturn_right_circle'; + static const String arrow_uturn_right_circle_fill = + 'arrow_uturn_right_circle_fill'; + static const String arrow_uturn_right_square = 'arrow_uturn_right_square'; + static const String arrow_uturn_right_square_fill = + 'arrow_uturn_right_square_fill'; + static const String arrow_uturn_up = 'arrow_uturn_up'; + static const String arrow_uturn_up_circle = 'arrow_uturn_up_circle'; + static const String arrow_uturn_up_circle_fill = 'arrow_uturn_up_circle_fill'; + static const String arrow_uturn_up_square = 'arrow_uturn_up_square'; + static const String arrow_uturn_up_square_fill = 'arrow_uturn_up_square_fill'; + static const String arrowshape_turn_up_left = 'arrowshape_turn_up_left'; + static const String arrowshape_turn_up_left_2 = 'arrowshape_turn_up_left_2'; + static const String arrowshape_turn_up_left_2_fill = + 'arrowshape_turn_up_left_2_fill'; + static const String arrowshape_turn_up_left_circle = + 'arrowshape_turn_up_left_circle'; + static const String arrowshape_turn_up_left_circle_fill = + 'arrowshape_turn_up_left_circle_fill'; + static const String arrowshape_turn_up_left_fill = + 'arrowshape_turn_up_left_fill'; + static const String arrowshape_turn_up_right = 'arrowshape_turn_up_right'; + static const String arrowshape_turn_up_right_circle = + 'arrowshape_turn_up_right_circle'; + static const String arrowshape_turn_up_right_circle_fill = + 'arrowshape_turn_up_right_circle_fill'; + static const String arrowshape_turn_up_right_fill = + 'arrowshape_turn_up_right_fill'; + static const String arrowtriangle_down = 'arrowtriangle_down'; + static const String arrowtriangle_down_circle = 'arrowtriangle_down_circle'; + static const String arrowtriangle_down_circle_fill = + 'arrowtriangle_down_circle_fill'; + static const String arrowtriangle_down_fill = 'arrowtriangle_down_fill'; + static const String arrowtriangle_down_square = 'arrowtriangle_down_square'; + static const String arrowtriangle_down_square_fill = + 'arrowtriangle_down_square_fill'; + static const String arrowtriangle_left = 'arrowtriangle_left'; + static const String arrowtriangle_left_circle = 'arrowtriangle_left_circle'; + static const String arrowtriangle_left_circle_fill = + 'arrowtriangle_left_circle_fill'; + static const String arrowtriangle_left_fill = 'arrowtriangle_left_fill'; + static const String arrowtriangle_left_square = 'arrowtriangle_left_square'; + static const String arrowtriangle_left_square_fill = + 'arrowtriangle_left_square_fill'; + static const String arrowtriangle_right = 'arrowtriangle_right'; + static const String arrowtriangle_right_circle = 'arrowtriangle_right_circle'; + static const String arrowtriangle_right_circle_fill = + 'arrowtriangle_right_circle_fill'; + static const String arrowtriangle_right_fill = 'arrowtriangle_right_fill'; + static const String arrowtriangle_right_square = 'arrowtriangle_right_square'; + static const String arrowtriangle_right_square_fill = + 'arrowtriangle_right_square_fill'; + static const String arrowtriangle_up = 'arrowtriangle_up'; + static const String arrowtriangle_up_circle = 'arrowtriangle_up_circle'; + static const String arrowtriangle_up_circle_fill = + 'arrowtriangle_up_circle_fill'; + static const String arrowtriangle_up_fill = 'arrowtriangle_up_fill'; + static const String arrowtriangle_up_square = 'arrowtriangle_up_square'; + static const String arrowtriangle_up_square_fill = + 'arrowtriangle_up_square_fill'; + static const String asterisk_circle = 'asterisk_circle'; + static const String asterisk_circle_fill = 'asterisk_circle_fill'; + static const String at = 'at'; + static const String at_badge_minus = 'at_badge_minus'; + static const String at_badge_plus = 'at_badge_plus'; + static const String at_circle = 'at_circle'; + static const String at_circle_fill = 'at_circle_fill'; + static const String back = 'back'; + static const String backward = 'backward'; + static const String backward_end = 'backward_end'; + static const String backward_end_alt = 'backward_end_alt'; + static const String backward_end_alt_fill = 'backward_end_alt_fill'; + static const String backward_end_fill = 'backward_end_fill'; + static const String backward_fill = 'backward_fill'; + static const String badge_plus_radiowaves_right = + 'badge_plus_radiowaves_right'; + static const String bag = 'bag'; + static const String bag_badge_minus = 'bag_badge_minus'; + static const String bag_badge_plus = 'bag_badge_plus'; + static const String bag_fill = 'bag_fill'; + static const String bag_fill_badge_minus = 'bag_fill_badge_minus'; + static const String bag_fill_badge_plus = 'bag_fill_badge_plus'; + static const String bandage = 'bandage'; + static const String bandage_fill = 'bandage_fill'; + static const String barcode = 'barcode'; + static const String barcode_viewfinder = 'barcode_viewfinder'; + static const String bars = 'bars'; + static const String battery_0 = 'battery_0'; + static const String battery_100 = 'battery_100'; + static const String battery_25 = 'battery_25'; + static const String battery_25_percent = 'battery_25_percent'; + static const String battery_75_percent = 'battery_75_percent'; + static const String battery_charging = 'battery_charging'; + static const String battery_empty = 'battery_empty'; + static const String battery_full = 'battery_full'; + static const String bed_double = 'bed_double'; + static const String bed_double_fill = 'bed_double_fill'; + static const String bell = 'bell'; + static const String bell_circle = 'bell_circle'; + static const String bell_circle_fill = 'bell_circle_fill'; + static const String bell_fill = 'bell_fill'; + static const String bell_slash = 'bell_slash'; + static const String bell_slash_fill = 'bell_slash_fill'; + static const String bell_solid = 'bell_solid'; + static const String bin_xmark = 'bin_xmark'; + static const String bin_xmark_fill = 'bin_xmark_fill'; + static const String bitcoin = 'bitcoin'; + static const String bitcoin_circle = 'bitcoin_circle'; + static const String bitcoin_circle_fill = 'bitcoin_circle_fill'; + static const String bluetooth = 'bluetooth'; + static const String bold = 'bold'; + static const String bold_italic_underline = 'bold_italic_underline'; + static const String bold_underline = 'bold_underline'; + static const String bolt = 'bolt'; + static const String bolt_badge_a = 'bolt_badge_a'; + static const String bolt_badge_a_fill = 'bolt_badge_a_fill'; + static const String bolt_circle = 'bolt_circle'; + static const String bolt_circle_fill = 'bolt_circle_fill'; + static const String bolt_fill = 'bolt_fill'; + static const String bolt_horizontal = 'bolt_horizontal'; + static const String bolt_horizontal_circle = 'bolt_horizontal_circle'; + static const String bolt_horizontal_circle_fill = + 'bolt_horizontal_circle_fill'; + static const String bolt_horizontal_fill = 'bolt_horizontal_fill'; + static const String bolt_slash = 'bolt_slash'; + static const String bolt_slash_fill = 'bolt_slash_fill'; + static const String book = 'book'; + static const String book_circle = 'book_circle'; + static const String book_circle_fill = 'book_circle_fill'; + static const String book_fill = 'book_fill'; + static const String book_solid = 'book_solid'; + static const String bookmark = 'bookmark'; + static const String bookmark_fill = 'bookmark_fill'; + static const String bookmark_solid = 'bookmark_solid'; + static const String briefcase = 'briefcase'; + static const String briefcase_fill = 'briefcase_fill'; + static const String brightness = 'brightness'; + static const String brightness_solid = 'brightness_solid'; + static const String bubble_left = 'bubble_left'; + static const String bubble_left_bubble_right = 'bubble_left_bubble_right'; + static const String bubble_left_bubble_right_fill = + 'bubble_left_bubble_right_fill'; + static const String bubble_left_fill = 'bubble_left_fill'; + static const String bubble_middle_bottom = 'bubble_middle_bottom'; + static const String bubble_middle_bottom_fill = 'bubble_middle_bottom_fill'; + static const String bubble_middle_top = 'bubble_middle_top'; + static const String bubble_middle_top_fill = 'bubble_middle_top_fill'; + static const String bubble_right = 'bubble_right'; + static const String bubble_right_fill = 'bubble_right_fill'; + static const String building_2_fill = 'building_2_fill'; + static const String burn = 'burn'; + static const String burst = 'burst'; + static const String burst_fill = 'burst_fill'; + static const String bus = 'bus'; + static const String calendar = 'calendar'; + static const String calendar_badge_minus = 'calendar_badge_minus'; + static const String calendar_badge_plus = 'calendar_badge_plus'; + static const String calendar_circle = 'calendar_circle'; + static const String calendar_circle_fill = 'calendar_circle_fill'; + static const String calendar_today = 'calendar_today'; + static const String camera = 'camera'; + static const String camera_circle = 'camera_circle'; + static const String camera_circle_fill = 'camera_circle_fill'; + static const String camera_fill = 'camera_fill'; + static const String camera_on_rectangle = 'camera_on_rectangle'; + static const String camera_on_rectangle_fill = 'camera_on_rectangle_fill'; + static const String camera_rotate = 'camera_rotate'; + static const String camera_rotate_fill = 'camera_rotate_fill'; + static const String camera_viewfinder = 'camera_viewfinder'; + static const String capslock = 'capslock'; + static const String capslock_fill = 'capslock_fill'; + static const String capsule = 'capsule'; + static const String capsule_fill = 'capsule_fill'; + static const String captions_bubble = 'captions_bubble'; + static const String captions_bubble_fill = 'captions_bubble_fill'; + static const String car = 'car'; + static const String car_detailed = 'car_detailed'; + static const String car_fill = 'car_fill'; + static const String cart = 'cart'; + static const String cart_badge_minus = 'cart_badge_minus'; + static const String cart_badge_plus = 'cart_badge_plus'; + static const String cart_fill = 'cart_fill'; + static const String cart_fill_badge_minus = 'cart_fill_badge_minus'; + static const String cart_fill_badge_plus = 'cart_fill_badge_plus'; + static const String chart_bar = 'chart_bar'; + static const String chart_bar_alt_fill = 'chart_bar_alt_fill'; + static const String chart_bar_circle = 'chart_bar_circle'; + static const String chart_bar_circle_fill = 'chart_bar_circle_fill'; + static const String chart_bar_fill = 'chart_bar_fill'; + static const String chart_bar_square = 'chart_bar_square'; + static const String chart_bar_square_fill = 'chart_bar_square_fill'; + static const String chart_pie = 'chart_pie'; + static const String chart_pie_fill = 'chart_pie_fill'; + static const String chat_bubble = 'chat_bubble'; + static const String chat_bubble_2 = 'chat_bubble_2'; + static const String chat_bubble_2_fill = 'chat_bubble_2_fill'; + static const String chat_bubble_fill = 'chat_bubble_fill'; + static const String chat_bubble_text = 'chat_bubble_text'; + static const String chat_bubble_text_fill = 'chat_bubble_text_fill'; + static const String check_mark = 'check_mark'; + static const String check_mark_circled = 'check_mark_circled'; + static const String check_mark_circled_solid = 'check_mark_circled_solid'; + static const String checkmark = 'checkmark'; + static const String checkmark_alt = 'checkmark_alt'; + static const String checkmark_alt_circle = 'checkmark_alt_circle'; + static const String checkmark_alt_circle_fill = 'checkmark_alt_circle_fill'; + static const String checkmark_circle = 'checkmark_circle'; + static const String checkmark_circle_fill = 'checkmark_circle_fill'; + static const String checkmark_rectangle = 'checkmark_rectangle'; + static const String checkmark_rectangle_fill = 'checkmark_rectangle_fill'; + static const String checkmark_seal = 'checkmark_seal'; + static const String checkmark_seal_fill = 'checkmark_seal_fill'; + static const String checkmark_shield = 'checkmark_shield'; + static const String checkmark_shield_fill = 'checkmark_shield_fill'; + static const String checkmark_square = 'checkmark_square'; + static const String checkmark_square_fill = 'checkmark_square_fill'; + static const String chevron_back = 'chevron_back'; + static const String chevron_compact_down = 'chevron_compact_down'; + static const String chevron_compact_left = 'chevron_compact_left'; + static const String chevron_compact_right = 'chevron_compact_right'; + static const String chevron_compact_up = 'chevron_compact_up'; + static const String chevron_down = 'chevron_down'; + static const String chevron_down_circle = 'chevron_down_circle'; + static const String chevron_down_circle_fill = 'chevron_down_circle_fill'; + static const String chevron_down_square = 'chevron_down_square'; + static const String chevron_down_square_fill = 'chevron_down_square_fill'; + static const String chevron_forward = 'chevron_forward'; + static const String chevron_left = 'chevron_left'; + static const String chevron_left_2 = 'chevron_left_2'; + static const String chevron_left_circle = 'chevron_left_circle'; + static const String chevron_left_circle_fill = 'chevron_left_circle_fill'; + static const String chevron_left_slash_chevron_right = + 'chevron_left_slash_chevron_right'; + static const String chevron_left_square = 'chevron_left_square'; + static const String chevron_left_square_fill = 'chevron_left_square_fill'; + static const String chevron_right = 'chevron_right'; + static const String chevron_right_2 = 'chevron_right_2'; + static const String chevron_right_circle = 'chevron_right_circle'; + static const String chevron_right_circle_fill = 'chevron_right_circle_fill'; + static const String chevron_right_square = 'chevron_right_square'; + static const String chevron_right_square_fill = 'chevron_right_square_fill'; + static const String chevron_up = 'chevron_up'; + static const String chevron_up_chevron_down = 'chevron_up_chevron_down'; + static const String chevron_up_circle = 'chevron_up_circle'; + static const String chevron_up_circle_fill = 'chevron_up_circle_fill'; + static const String chevron_up_square = 'chevron_up_square'; + static const String chevron_up_square_fill = 'chevron_up_square_fill'; + static const String circle = 'circle'; + static const String circle_bottomthird_split = 'circle_bottomthird_split'; + static const String circle_fill = 'circle_fill'; + static const String circle_filled = 'circle_filled'; + static const String circle_grid_3x3 = 'circle_grid_3x3'; + static const String circle_grid_3x3_fill = 'circle_grid_3x3_fill'; + static const String circle_grid_hex = 'circle_grid_hex'; + static const String circle_grid_hex_fill = 'circle_grid_hex_fill'; + static const String circle_lefthalf_fill = 'circle_lefthalf_fill'; + static const String circle_righthalf_fill = 'circle_righthalf_fill'; + static const String clear = 'clear'; + static const String clear_circled = 'clear_circled'; + static const String clear_circled_solid = 'clear_circled_solid'; + static const String clear_fill = 'clear_fill'; + static const String clear_thick = 'clear_thick'; + static const String clear_thick_circled = 'clear_thick_circled'; + static const String clock = 'clock'; + static const String clock_fill = 'clock_fill'; + static const String clock_solid = 'clock_solid'; + static const String cloud = 'cloud'; + static const String cloud_bolt = 'cloud_bolt'; + static const String cloud_bolt_fill = 'cloud_bolt_fill'; + static const String cloud_bolt_rain = 'cloud_bolt_rain'; + static const String cloud_bolt_rain_fill = 'cloud_bolt_rain_fill'; + static const String cloud_download = 'cloud_download'; + static const String cloud_download_fill = 'cloud_download_fill'; + static const String cloud_drizzle = 'cloud_drizzle'; + static const String cloud_drizzle_fill = 'cloud_drizzle_fill'; + static const String cloud_fill = 'cloud_fill'; + static const String cloud_fog = 'cloud_fog'; + static const String cloud_fog_fill = 'cloud_fog_fill'; + static const String cloud_hail = 'cloud_hail'; + static const String cloud_hail_fill = 'cloud_hail_fill'; + static const String cloud_heavyrain = 'cloud_heavyrain'; + static const String cloud_heavyrain_fill = 'cloud_heavyrain_fill'; + static const String cloud_moon = 'cloud_moon'; + static const String cloud_moon_bolt = 'cloud_moon_bolt'; + static const String cloud_moon_bolt_fill = 'cloud_moon_bolt_fill'; + static const String cloud_moon_fill = 'cloud_moon_fill'; + static const String cloud_moon_rain = 'cloud_moon_rain'; + static const String cloud_moon_rain_fill = 'cloud_moon_rain_fill'; + static const String cloud_rain = 'cloud_rain'; + static const String cloud_rain_fill = 'cloud_rain_fill'; + static const String cloud_sleet = 'cloud_sleet'; + static const String cloud_sleet_fill = 'cloud_sleet_fill'; + static const String cloud_snow = 'cloud_snow'; + static const String cloud_snow_fill = 'cloud_snow_fill'; + static const String cloud_sun = 'cloud_sun'; + static const String cloud_sun_bolt = 'cloud_sun_bolt'; + static const String cloud_sun_bolt_fill = 'cloud_sun_bolt_fill'; + static const String cloud_sun_fill = 'cloud_sun_fill'; + static const String cloud_sun_rain = 'cloud_sun_rain'; + static const String cloud_sun_rain_fill = 'cloud_sun_rain_fill'; + static const String cloud_upload = 'cloud_upload'; + static const String cloud_upload_fill = 'cloud_upload_fill'; + static const String collections = 'collections'; + static const String collections_solid = 'collections_solid'; + static const String color_filter = 'color_filter'; + static const String color_filter_fill = 'color_filter_fill'; + static const String command = 'command'; + static const String compass = 'compass'; + static const String compass_fill = 'compass_fill'; + static const String control = 'control'; + static const String conversation_bubble = 'conversation_bubble'; + static const String create = 'create'; + static const String create_solid = 'create_solid'; + static const String creditcard = 'creditcard'; + static const String creditcard_fill = 'creditcard_fill'; + static const String crop = 'crop'; + static const String crop_rotate = 'crop_rotate'; + static const String cube = 'cube'; + static const String cube_box = 'cube_box'; + static const String cube_box_fill = 'cube_box_fill'; + static const String cube_fill = 'cube_fill'; + static const String cursor_rays = 'cursor_rays'; + static const String decrease_indent = 'decrease_indent'; + static const String decrease_quotelevel = 'decrease_quotelevel'; + static const String delete = 'delete'; + static const String delete_left = 'delete_left'; + static const String delete_left_fill = 'delete_left_fill'; + static const String delete_right = 'delete_right'; + static const String delete_right_fill = 'delete_right_fill'; + static const String delete_simple = 'delete_simple'; + static const String delete_solid = 'delete_solid'; + static const String desktopcomputer = 'desktopcomputer'; + static const String device_desktop = 'device_desktop'; + static const String device_laptop = 'device_laptop'; + static const String device_phone_landscape = 'device_phone_landscape'; + static const String device_phone_portrait = 'device_phone_portrait'; + static const String dial = 'dial'; + static const String dial_fill = 'dial_fill'; + static const String divide = 'divide'; + static const String divide_circle = 'divide_circle'; + static const String divide_circle_fill = 'divide_circle_fill'; + static const String divide_square = 'divide_square'; + static const String divide_square_fill = 'divide_square_fill'; + static const String doc = 'doc'; + static const String doc_append = 'doc_append'; + static const String doc_chart = 'doc_chart'; + static const String doc_chart_fill = 'doc_chart_fill'; + static const String doc_checkmark = 'doc_checkmark'; + static const String doc_checkmark_fill = 'doc_checkmark_fill'; + static const String doc_circle = 'doc_circle'; + static const String doc_circle_fill = 'doc_circle_fill'; + static const String doc_fill = 'doc_fill'; + static const String doc_on_clipboard = 'doc_on_clipboard'; + static const String doc_on_clipboard_fill = 'doc_on_clipboard_fill'; + static const String doc_on_doc = 'doc_on_doc'; + static const String doc_on_doc_fill = 'doc_on_doc_fill'; + static const String doc_person = 'doc_person'; + static const String doc_person_fill = 'doc_person_fill'; + static const String doc_plaintext = 'doc_plaintext'; + static const String doc_richtext = 'doc_richtext'; + static const String doc_text = 'doc_text'; + static const String doc_text_fill = 'doc_text_fill'; + static const String doc_text_search = 'doc_text_search'; + static const String doc_text_viewfinder = 'doc_text_viewfinder'; + static const String dot_radiowaves_left_right = 'dot_radiowaves_left_right'; + static const String dot_radiowaves_right = 'dot_radiowaves_right'; + static const String dot_square = 'dot_square'; + static const String dot_square_fill = 'dot_square_fill'; + static const String double_music_note = 'double_music_note'; + static const String down_arrow = 'down_arrow'; + static const String download_circle = 'download_circle'; + static const String download_circle_fill = 'download_circle_fill'; + static const String drop = 'drop'; + static const String drop_fill = 'drop_fill'; + static const String drop_triangle = 'drop_triangle'; + static const String drop_triangle_fill = 'drop_triangle_fill'; + static const String ear = 'ear'; + static const String eject = 'eject'; + static const String eject_fill = 'eject_fill'; + static const String ellipses_bubble = 'ellipses_bubble'; + static const String ellipses_bubble_fill = 'ellipses_bubble_fill'; + static const String ellipsis = 'ellipsis'; + static const String ellipsis_circle = 'ellipsis_circle'; + static const String ellipsis_circle_fill = 'ellipsis_circle_fill'; + static const String ellipsis_vertical = 'ellipsis_vertical'; + static const String ellipsis_vertical_circle = 'ellipsis_vertical_circle'; + static const String ellipsis_vertical_circle_fill = + 'ellipsis_vertical_circle_fill'; + static const String envelope = 'envelope'; + static const String envelope_badge = 'envelope_badge'; + static const String envelope_badge_fill = 'envelope_badge_fill'; + static const String envelope_circle = 'envelope_circle'; + static const String envelope_circle_fill = 'envelope_circle_fill'; + static const String envelope_fill = 'envelope_fill'; + static const String envelope_open = 'envelope_open'; + static const String envelope_open_fill = 'envelope_open_fill'; + static const String equal = 'equal'; + static const String equal_circle = 'equal_circle'; + static const String equal_circle_fill = 'equal_circle_fill'; + static const String equal_square = 'equal_square'; + static const String equal_square_fill = 'equal_square_fill'; + static const String escape = 'escape'; + static const String exclamationmark = 'exclamationmark'; + static const String exclamationmark_bubble = 'exclamationmark_bubble'; + static const String exclamationmark_bubble_fill = + 'exclamationmark_bubble_fill'; + static const String exclamationmark_circle = 'exclamationmark_circle'; + static const String exclamationmark_circle_fill = + 'exclamationmark_circle_fill'; + static const String exclamationmark_octagon = 'exclamationmark_octagon'; + static const String exclamationmark_octagon_fill = + 'exclamationmark_octagon_fill'; + static const String exclamationmark_shield = 'exclamationmark_shield'; + static const String exclamationmark_shield_fill = + 'exclamationmark_shield_fill'; + static const String exclamationmark_square = 'exclamationmark_square'; + static const String exclamationmark_square_fill = + 'exclamationmark_square_fill'; + static const String exclamationmark_triangle = 'exclamationmark_triangle'; + static const String exclamationmark_triangle_fill = + 'exclamationmark_triangle_fill'; + static const String eye = 'eye'; + static const String eye_fill = 'eye_fill'; + static const String eye_slash = 'eye_slash'; + static const String eye_slash_fill = 'eye_slash_fill'; + static const String eye_solid = 'eye_solid'; + static const String eyedropper = 'eyedropper'; + static const String eyedropper_full = 'eyedropper_full'; + static const String eyedropper_halffull = 'eyedropper_halffull'; + static const String eyeglasses = 'eyeglasses'; + static const String f_cursive = 'f_cursive'; + static const String f_cursive_circle = 'f_cursive_circle'; + static const String f_cursive_circle_fill = 'f_cursive_circle_fill'; + static const String film = 'film'; + static const String film_fill = 'film_fill'; + static const String flag = 'flag'; + static const String flag_circle = 'flag_circle'; + static const String flag_circle_fill = 'flag_circle_fill'; + static const String flag_fill = 'flag_fill'; + static const String flag_slash = 'flag_slash'; + static const String flag_slash_fill = 'flag_slash_fill'; + static const String flame = 'flame'; + static const String flame_fill = 'flame_fill'; + static const String floppy_disk = 'floppy_disk'; + static const String flowchart = 'flowchart'; + static const String flowchart_fill = 'flowchart_fill'; + static const String folder = 'folder'; + static const String folder_badge_minus = 'folder_badge_minus'; + static const String folder_badge_person_crop = 'folder_badge_person_crop'; + static const String folder_badge_plus = 'folder_badge_plus'; + static const String folder_circle = 'folder_circle'; + static const String folder_circle_fill = 'folder_circle_fill'; + static const String folder_fill = 'folder_fill'; + static const String folder_fill_badge_minus = 'folder_fill_badge_minus'; + static const String folder_fill_badge_person_crop = + 'folder_fill_badge_person_crop'; + static const String folder_fill_badge_plus = 'folder_fill_badge_plus'; + static const String folder_open = 'folder_open'; + static const String folder_solid = 'folder_solid'; + static const String forward = 'forward'; + static const String forward_end = 'forward_end'; + static const String forward_end_alt = 'forward_end_alt'; + static const String forward_end_alt_fill = 'forward_end_alt_fill'; + static const String forward_end_fill = 'forward_end_fill'; + static const String forward_fill = 'forward_fill'; + static const String fullscreen = 'fullscreen'; + static const String fullscreen_exit = 'fullscreen_exit'; + static const String function = 'function'; + static const String fx = 'fx'; + static const String game_controller = 'game_controller'; + static const String game_controller_solid = 'game_controller_solid'; + static const String gamecontroller = 'gamecontroller'; + static const String gamecontroller_alt_fill = 'gamecontroller_alt_fill'; + static const String gamecontroller_fill = 'gamecontroller_fill'; + static const String gauge = 'gauge'; + static const String gauge_badge_minus = 'gauge_badge_minus'; + static const String gauge_badge_plus = 'gauge_badge_plus'; + static const String gear = 'gear'; + static const String gear_alt = 'gear_alt'; + static const String gear_alt_fill = 'gear_alt_fill'; + static const String gear_big = 'gear_big'; + static const String gear_solid = 'gear_solid'; + static const String gift = 'gift'; + static const String gift_alt = 'gift_alt'; + static const String gift_alt_fill = 'gift_alt_fill'; + static const String gift_fill = 'gift_fill'; + static const String globe = 'globe'; + static const String gobackward = 'gobackward'; + static const String gobackward_10 = 'gobackward_10'; + static const String gobackward_15 = 'gobackward_15'; + static const String gobackward_30 = 'gobackward_30'; + static const String gobackward_45 = 'gobackward_45'; + static const String gobackward_60 = 'gobackward_60'; + static const String gobackward_75 = 'gobackward_75'; + static const String gobackward_90 = 'gobackward_90'; + static const String gobackward_minus = 'gobackward_minus'; + static const String goforward = 'goforward'; + static const String goforward_10 = 'goforward_10'; + static const String goforward_15 = 'goforward_15'; + static const String goforward_30 = 'goforward_30'; + static const String goforward_45 = 'goforward_45'; + static const String goforward_60 = 'goforward_60'; + static const String goforward_75 = 'goforward_75'; + static const String goforward_90 = 'goforward_90'; + static const String goforward_plus = 'goforward_plus'; + static const String graph_circle = 'graph_circle'; + static const String graph_circle_fill = 'graph_circle_fill'; + static const String graph_square = 'graph_square'; + static const String graph_square_fill = 'graph_square_fill'; + static const String greaterthan = 'greaterthan'; + static const String greaterthan_circle = 'greaterthan_circle'; + static const String greaterthan_circle_fill = 'greaterthan_circle_fill'; + static const String greaterthan_square = 'greaterthan_square'; + static const String greaterthan_square_fill = 'greaterthan_square_fill'; + static const String grid = 'grid'; + static const String grid_circle = 'grid_circle'; + static const String grid_circle_fill = 'grid_circle_fill'; + static const String group = 'group'; + static const String group_solid = 'group_solid'; + static const String guitars = 'guitars'; + static const String hammer = 'hammer'; + static const String hammer_fill = 'hammer_fill'; + static const String hand_draw = 'hand_draw'; + static const String hand_draw_fill = 'hand_draw_fill'; + static const String hand_point_left = 'hand_point_left'; + static const String hand_point_left_fill = 'hand_point_left_fill'; + static const String hand_point_right = 'hand_point_right'; + static const String hand_point_right_fill = 'hand_point_right_fill'; + static const String hand_raised = 'hand_raised'; + static const String hand_raised_fill = 'hand_raised_fill'; + static const String hand_raised_slash = 'hand_raised_slash'; + static const String hand_raised_slash_fill = 'hand_raised_slash_fill'; + static const String hand_thumbsdown = 'hand_thumbsdown'; + static const String hand_thumbsdown_fill = 'hand_thumbsdown_fill'; + static const String hand_thumbsup = 'hand_thumbsup'; + static const String hand_thumbsup_fill = 'hand_thumbsup_fill'; + static const String hare = 'hare'; + static const String hare_fill = 'hare_fill'; + static const String headphones = 'headphones'; + static const String heart = 'heart'; + static const String heart_circle = 'heart_circle'; + static const String heart_circle_fill = 'heart_circle_fill'; + static const String heart_fill = 'heart_fill'; + static const String heart_slash = 'heart_slash'; + static const String heart_slash_circle = 'heart_slash_circle'; + static const String heart_slash_circle_fill = 'heart_slash_circle_fill'; + static const String heart_slash_fill = 'heart_slash_fill'; + static const String heart_solid = 'heart_solid'; + static const String helm = 'helm'; + static const String hexagon = 'hexagon'; + static const String hexagon_fill = 'hexagon_fill'; + static const String hifispeaker = 'hifispeaker'; + static const String hifispeaker_fill = 'hifispeaker_fill'; + static const String home = 'home'; + static const String hourglass = 'hourglass'; + static const String hourglass_bottomhalf_fill = 'hourglass_bottomhalf_fill'; + static const String hourglass_tophalf_fill = 'hourglass_tophalf_fill'; + static const String house = 'house'; + static const String house_alt = 'house_alt'; + static const String house_alt_fill = 'house_alt_fill'; + static const String house_fill = 'house_fill'; + static const String hurricane = 'hurricane'; + static const String increase_indent = 'increase_indent'; + static const String increase_quotelevel = 'increase_quotelevel'; + static const String infinite = 'infinite'; + static const String info = 'info'; + static const String info_circle = 'info_circle'; + static const String info_circle_fill = 'info_circle_fill'; + static const String italic = 'italic'; + static const String keyboard = 'keyboard'; + static const String keyboard_chevron_compact_down = + 'keyboard_chevron_compact_down'; + static const String lab_flask = 'lab_flask'; + static const String lab_flask_solid = 'lab_flask_solid'; + static const String largecircle_fill_circle = 'largecircle_fill_circle'; + static const String lasso = 'lasso'; + static const String layers = 'layers'; + static const String layers_alt = 'layers_alt'; + static const String layers_alt_fill = 'layers_alt_fill'; + static const String layers_fill = 'layers_fill'; + static const String leaf_arrow_circlepath = 'leaf_arrow_circlepath'; + static const String left_chevron = 'left_chevron'; + static const String lessthan = 'lessthan'; + static const String lessthan_circle = 'lessthan_circle'; + static const String lessthan_circle_fill = 'lessthan_circle_fill'; + static const String lessthan_square = 'lessthan_square'; + static const String lessthan_square_fill = 'lessthan_square_fill'; + static const String light_max = 'light_max'; + static const String light_min = 'light_min'; + static const String lightbulb = 'lightbulb'; + static const String lightbulb_fill = 'lightbulb_fill'; + static const String lightbulb_slash = 'lightbulb_slash'; + static const String lightbulb_slash_fill = 'lightbulb_slash_fill'; + static const String line_horizontal_3 = 'line_horizontal_3'; + static const String line_horizontal_3_decrease = 'line_horizontal_3_decrease'; + static const String line_horizontal_3_decrease_circle = + 'line_horizontal_3_decrease_circle'; + static const String line_horizontal_3_decrease_circle_fill = + 'line_horizontal_3_decrease_circle_fill'; + static const String link = 'link'; + static const String link_circle = 'link_circle'; + static const String link_circle_fill = 'link_circle_fill'; + static const String list_bullet = 'list_bullet'; + static const String list_bullet_below_rectangle = + 'list_bullet_below_rectangle'; + static const String list_bullet_indent = 'list_bullet_indent'; + static const String list_dash = 'list_dash'; + static const String list_number = 'list_number'; + static const String list_number_rtl = 'list_number_rtl'; + static const String location = 'location'; + static const String location_circle = 'location_circle'; + static const String location_circle_fill = 'location_circle_fill'; + static const String location_fill = 'location_fill'; + static const String location_north = 'location_north'; + static const String location_north_fill = 'location_north_fill'; + static const String location_north_line = 'location_north_line'; + static const String location_north_line_fill = 'location_north_line_fill'; + static const String location_slash = 'location_slash'; + static const String location_slash_fill = 'location_slash_fill'; + static const String location_solid = 'location_solid'; + static const String lock = 'lock'; + static const String lock_circle = 'lock_circle'; + static const String lock_circle_fill = 'lock_circle_fill'; + static const String lock_fill = 'lock_fill'; + static const String lock_open = 'lock_open'; + static const String lock_open_fill = 'lock_open_fill'; + static const String lock_rotation = 'lock_rotation'; + static const String lock_rotation_open = 'lock_rotation_open'; + static const String lock_shield = 'lock_shield'; + static const String lock_shield_fill = 'lock_shield_fill'; + static const String lock_slash = 'lock_slash'; + static const String lock_slash_fill = 'lock_slash_fill'; + static const String loop = 'loop'; + static const String loop_thick = 'loop_thick'; + static const String macwindow = 'macwindow'; + static const String mail = 'mail'; + static const String mail_solid = 'mail_solid'; + static const String map = 'map'; + static const String map_fill = 'map_fill'; + static const String map_pin = 'map_pin'; + static const String map_pin_ellipse = 'map_pin_ellipse'; + static const String map_pin_slash = 'map_pin_slash'; + static const String memories = 'memories'; + static const String memories_badge_minus = 'memories_badge_minus'; + static const String memories_badge_plus = 'memories_badge_plus'; + static const String metronome = 'metronome'; + static const String mic = 'mic'; + static const String mic_circle = 'mic_circle'; + static const String mic_circle_fill = 'mic_circle_fill'; + static const String mic_fill = 'mic_fill'; + static const String mic_off = 'mic_off'; + static const String mic_slash = 'mic_slash'; + static const String mic_slash_fill = 'mic_slash_fill'; + static const String mic_solid = 'mic_solid'; + static const String minus = 'minus'; + static const String minus_circle = 'minus_circle'; + static const String minus_circle_fill = 'minus_circle_fill'; + static const String minus_circled = 'minus_circled'; + static const String minus_rectangle = 'minus_rectangle'; + static const String minus_rectangle_fill = 'minus_rectangle_fill'; + static const String minus_slash_plus = 'minus_slash_plus'; + static const String minus_square = 'minus_square'; + static const String minus_square_fill = 'minus_square_fill'; + static const String money_dollar = 'money_dollar'; + static const String money_dollar_circle = 'money_dollar_circle'; + static const String money_dollar_circle_fill = 'money_dollar_circle_fill'; + static const String money_euro = 'money_euro'; + static const String money_euro_circle = 'money_euro_circle'; + static const String money_euro_circle_fill = 'money_euro_circle_fill'; + static const String money_pound = 'money_pound'; + static const String money_pound_circle = 'money_pound_circle'; + static const String money_pound_circle_fill = 'money_pound_circle_fill'; + static const String money_rubl = 'money_rubl'; + static const String money_rubl_circle = 'money_rubl_circle'; + static const String money_rubl_circle_fill = 'money_rubl_circle_fill'; + static const String money_yen = 'money_yen'; + static const String money_yen_circle = 'money_yen_circle'; + static const String money_yen_circle_fill = 'money_yen_circle_fill'; + static const String moon = 'moon'; + static const String moon_circle = 'moon_circle'; + static const String moon_circle_fill = 'moon_circle_fill'; + static const String moon_fill = 'moon_fill'; + static const String moon_stars = 'moon_stars'; + static const String moon_stars_fill = 'moon_stars_fill'; + static const String moon_zzz = 'moon_zzz'; + static const String moon_zzz_fill = 'moon_zzz_fill'; + static const String move = 'move'; + static const String multiply = 'multiply'; + static const String multiply_circle = 'multiply_circle'; + static const String multiply_circle_fill = 'multiply_circle_fill'; + static const String multiply_square = 'multiply_square'; + static const String multiply_square_fill = 'multiply_square_fill'; + static const String music_albums = 'music_albums'; + static const String music_albums_fill = 'music_albums_fill'; + static const String music_house = 'music_house'; + static const String music_house_fill = 'music_house_fill'; + static const String music_mic = 'music_mic'; + static const String music_note = 'music_note'; + static const String music_note_2 = 'music_note_2'; + static const String music_note_list = 'music_note_list'; + static const String news = 'news'; + static const String news_solid = 'news_solid'; + static const String nosign = 'nosign'; + static const String number = 'number'; + static const String number_circle = 'number_circle'; + static const String number_circle_fill = 'number_circle_fill'; + static const String number_square = 'number_square'; + static const String number_square_fill = 'number_square_fill'; + static const String option = 'option'; + static const String padlock = 'padlock'; + static const String padlock_solid = 'padlock_solid'; + static const String paintbrush = 'paintbrush'; + static const String paintbrush_fill = 'paintbrush_fill'; + static const String pano = 'pano'; + static const String pano_fill = 'pano_fill'; + static const String paperclip = 'paperclip'; + static const String paperplane = 'paperplane'; + static const String paperplane_fill = 'paperplane_fill'; + static const String paragraph = 'paragraph'; + static const String pause = 'pause'; + static const String pause_circle = 'pause_circle'; + static const String pause_circle_fill = 'pause_circle_fill'; + static const String pause_fill = 'pause_fill'; + static const String pause_rectangle = 'pause_rectangle'; + static const String pause_rectangle_fill = 'pause_rectangle_fill'; + static const String pause_solid = 'pause_solid'; + static const String paw = 'paw'; + static const String paw_solid = 'paw_solid'; + static const String pen = 'pen'; + static const String pencil = 'pencil'; + static const String pencil_circle = 'pencil_circle'; + static const String pencil_circle_fill = 'pencil_circle_fill'; + static const String pencil_ellipsis_rectangle = 'pencil_ellipsis_rectangle'; + static const String pencil_outline = 'pencil_outline'; + static const String pencil_slash = 'pencil_slash'; + static const String percent = 'percent'; + static const String person = 'person'; + static const String person_2 = 'person_2'; + static const String person_2_alt = 'person_2_alt'; + static const String person_2_fill = 'person_2_fill'; + static const String person_2_square_stack = 'person_2_square_stack'; + static const String person_2_square_stack_fill = 'person_2_square_stack_fill'; + static const String person_3 = 'person_3'; + static const String person_3_fill = 'person_3_fill'; + static const String person_add = 'person_add'; + static const String person_add_solid = 'person_add_solid'; + static const String person_alt = 'person_alt'; + static const String person_alt_circle = 'person_alt_circle'; + static const String person_alt_circle_fill = 'person_alt_circle_fill'; + static const String person_badge_minus = 'person_badge_minus'; + static const String person_badge_minus_fill = 'person_badge_minus_fill'; + static const String person_badge_plus = 'person_badge_plus'; + static const String person_badge_plus_fill = 'person_badge_plus_fill'; + static const String person_circle = 'person_circle'; + static const String person_circle_fill = 'person_circle_fill'; + static const String person_crop_circle = 'person_crop_circle'; + static const String person_crop_circle_badge_checkmark = + 'person_crop_circle_badge_checkmark'; + static const String person_crop_circle_badge_exclam = + 'person_crop_circle_badge_exclam'; + static const String person_crop_circle_badge_minus = + 'person_crop_circle_badge_minus'; + static const String person_crop_circle_badge_plus = + 'person_crop_circle_badge_plus'; + static const String person_crop_circle_badge_xmark = + 'person_crop_circle_badge_xmark'; + static const String person_crop_circle_fill = 'person_crop_circle_fill'; + static const String person_crop_circle_fill_badge_checkmark = + 'person_crop_circle_fill_badge_checkmark'; + static const String person_crop_circle_fill_badge_exclam = + 'person_crop_circle_fill_badge_exclam'; + static const String person_crop_circle_fill_badge_minus = + 'person_crop_circle_fill_badge_minus'; + static const String person_crop_circle_fill_badge_plus = + 'person_crop_circle_fill_badge_plus'; + static const String person_crop_circle_fill_badge_xmark = + 'person_crop_circle_fill_badge_xmark'; + static const String person_crop_rectangle = 'person_crop_rectangle'; + static const String person_crop_rectangle_fill = 'person_crop_rectangle_fill'; + static const String person_crop_square = 'person_crop_square'; + static const String person_crop_square_fill = 'person_crop_square_fill'; + static const String person_fill = 'person_fill'; + static const String person_solid = 'person_solid'; + static const String personalhotspot = 'personalhotspot'; + static const String perspective = 'perspective'; + static const String phone = 'phone'; + static const String phone_arrow_down_left = 'phone_arrow_down_left'; + static const String phone_arrow_right = 'phone_arrow_right'; + static const String phone_arrow_up_right = 'phone_arrow_up_right'; + static const String phone_badge_plus = 'phone_badge_plus'; + static const String phone_circle = 'phone_circle'; + static const String phone_circle_fill = 'phone_circle_fill'; + static const String phone_down = 'phone_down'; + static const String phone_down_circle = 'phone_down_circle'; + static const String phone_down_circle_fill = 'phone_down_circle_fill'; + static const String phone_down_fill = 'phone_down_fill'; + static const String phone_fill = 'phone_fill'; + static const String phone_fill_arrow_down_left = 'phone_fill_arrow_down_left'; + static const String phone_fill_arrow_right = 'phone_fill_arrow_right'; + static const String phone_fill_arrow_up_right = 'phone_fill_arrow_up_right'; + static const String phone_fill_badge_plus = 'phone_fill_badge_plus'; + static const String phone_solid = 'phone_solid'; + static const String photo = 'photo'; + static const String photo_camera = 'photo_camera'; + static const String photo_camera_solid = 'photo_camera_solid'; + static const String photo_fill = 'photo_fill'; + static const String photo_fill_on_rectangle_fill = + 'photo_fill_on_rectangle_fill'; + static const String photo_on_rectangle = 'photo_on_rectangle'; + static const String piano = 'piano'; + static const String pin = 'pin'; + static const String pin_fill = 'pin_fill'; + static const String pin_slash = 'pin_slash'; + static const String pin_slash_fill = 'pin_slash_fill'; + static const String placemark = 'placemark'; + static const String placemark_fill = 'placemark_fill'; + static const String play = 'play'; + static const String play_arrow = 'play_arrow'; + static const String play_arrow_solid = 'play_arrow_solid'; + static const String play_circle = 'play_circle'; + static const String play_circle_fill = 'play_circle_fill'; + static const String play_fill = 'play_fill'; + static const String play_rectangle = 'play_rectangle'; + static const String play_rectangle_fill = 'play_rectangle_fill'; + static const String playpause = 'playpause'; + static const String playpause_fill = 'playpause_fill'; + static const String plus = 'plus'; + static const String plus_app = 'plus_app'; + static const String plus_app_fill = 'plus_app_fill'; + static const String plus_bubble = 'plus_bubble'; + static const String plus_bubble_fill = 'plus_bubble_fill'; + static const String plus_circle = 'plus_circle'; + static const String plus_circle_fill = 'plus_circle_fill'; + static const String plus_circled = 'plus_circled'; + static const String plus_rectangle = 'plus_rectangle'; + static const String plus_rectangle_fill = 'plus_rectangle_fill'; + static const String plus_rectangle_fill_on_rectangle_fill = + 'plus_rectangle_fill_on_rectangle_fill'; + static const String plus_rectangle_on_rectangle = + 'plus_rectangle_on_rectangle'; + static const String plus_slash_minus = 'plus_slash_minus'; + static const String plus_square = 'plus_square'; + static const String plus_square_fill = 'plus_square_fill'; + static const String plus_square_fill_on_square_fill = + 'plus_square_fill_on_square_fill'; + static const String plus_square_on_square = 'plus_square_on_square'; + static const String plusminus = 'plusminus'; + static const String plusminus_circle = 'plusminus_circle'; + static const String plusminus_circle_fill = 'plusminus_circle_fill'; + static const String power = 'power'; + static const String printer = 'printer'; + static const String printer_fill = 'printer_fill'; + static const String profile_circled = 'profile_circled'; + static const String projective = 'projective'; + static const String purchased = 'purchased'; + static const String purchased_circle = 'purchased_circle'; + static const String purchased_circle_fill = 'purchased_circle_fill'; + static const String qrcode = 'qrcode'; + static const String qrcode_viewfinder = 'qrcode_viewfinder'; + static const String question = 'question'; + static const String question_circle = 'question_circle'; + static const String question_circle_fill = 'question_circle_fill'; + static const String question_diamond = 'question_diamond'; + static const String question_diamond_fill = 'question_diamond_fill'; + static const String question_square = 'question_square'; + static const String question_square_fill = 'question_square_fill'; + static const String quote_bubble = 'quote_bubble'; + static const String quote_bubble_fill = 'quote_bubble_fill'; + static const String radiowaves_left = 'radiowaves_left'; + static const String radiowaves_right = 'radiowaves_right'; + static const String rays = 'rays'; + static const String recordingtape = 'recordingtape'; + static const String rectangle = 'rectangle'; + static const String rectangle_3_offgrid = 'rectangle_3_offgrid'; + static const String rectangle_3_offgrid_fill = 'rectangle_3_offgrid_fill'; + static const String rectangle_arrow_up_right_arrow_down_left = + 'rectangle_arrow_up_right_arrow_down_left'; + static const String rectangle_arrow_up_right_arrow_down_left_slash = + 'rectangle_arrow_up_right_arrow_down_left_slash'; + static const String rectangle_badge_checkmark = 'rectangle_badge_checkmark'; + static const String rectangle_badge_xmark = 'rectangle_badge_xmark'; + static const String rectangle_compress_vertical = + 'rectangle_compress_vertical'; + static const String rectangle_dock = 'rectangle_dock'; + static const String rectangle_expand_vertical = 'rectangle_expand_vertical'; + static const String rectangle_fill = 'rectangle_fill'; + static const String rectangle_fill_badge_checkmark = + 'rectangle_fill_badge_checkmark'; + static const String rectangle_fill_badge_xmark = 'rectangle_fill_badge_xmark'; + static const String rectangle_fill_on_rectangle_angled_fill = + 'rectangle_fill_on_rectangle_angled_fill'; + static const String rectangle_fill_on_rectangle_fill = + 'rectangle_fill_on_rectangle_fill'; + static const String rectangle_grid_1x2 = 'rectangle_grid_1x2'; + static const String rectangle_grid_1x2_fill = 'rectangle_grid_1x2_fill'; + static const String rectangle_grid_2x2 = 'rectangle_grid_2x2'; + static const String rectangle_grid_2x2_fill = 'rectangle_grid_2x2_fill'; + static const String rectangle_grid_3x2 = 'rectangle_grid_3x2'; + static const String rectangle_grid_3x2_fill = 'rectangle_grid_3x2_fill'; + static const String rectangle_on_rectangle = 'rectangle_on_rectangle'; + static const String rectangle_on_rectangle_angled = + 'rectangle_on_rectangle_angled'; + static const String rectangle_paperclip = 'rectangle_paperclip'; + static const String rectangle_split_3x1 = 'rectangle_split_3x1'; + static const String rectangle_split_3x1_fill = 'rectangle_split_3x1_fill'; + static const String rectangle_split_3x3 = 'rectangle_split_3x3'; + static const String rectangle_split_3x3_fill = 'rectangle_split_3x3_fill'; + static const String rectangle_stack = 'rectangle_stack'; + static const String rectangle_stack_badge_minus = + 'rectangle_stack_badge_minus'; + static const String rectangle_stack_badge_person_crop = + 'rectangle_stack_badge_person_crop'; + static const String rectangle_stack_badge_plus = 'rectangle_stack_badge_plus'; + static const String rectangle_stack_fill = 'rectangle_stack_fill'; + static const String rectangle_stack_fill_badge_minus = + 'rectangle_stack_fill_badge_minus'; + static const String rectangle_stack_fill_badge_person_crop = + 'rectangle_stack_fill_badge_person_crop'; + static const String rectangle_stack_fill_badge_plus = + 'rectangle_stack_fill_badge_plus'; + static const String rectangle_stack_person_crop = + 'rectangle_stack_person_crop'; + static const String rectangle_stack_person_crop_fill = + 'rectangle_stack_person_crop_fill'; + static const String refresh = 'refresh'; + static const String refresh_bold = 'refresh_bold'; + static const String refresh_circled = 'refresh_circled'; + static const String refresh_circled_solid = 'refresh_circled_solid'; + static const String refresh_thick = 'refresh_thick'; + static const String refresh_thin = 'refresh_thin'; + static const String repeat = 'repeat'; + static const String repeat_1 = 'repeat_1'; + static const String reply = 'reply'; + static const String reply_all = 'reply_all'; + static const String reply_thick_solid = 'reply_thick_solid'; + static const String resize = 'resize'; + static const String resize_h = 'resize_h'; + static const String resize_v = 'resize_v'; + static const String restart = 'restart'; + static const String return_icon = 'return_icon'; + static const String rhombus = 'rhombus'; + static const String rhombus_fill = 'rhombus_fill'; + static const String right_chevron = 'right_chevron'; + static const String rocket = 'rocket'; + static const String rocket_fill = 'rocket_fill'; + static const String rosette = 'rosette'; + static const String rotate_left = 'rotate_left'; + static const String rotate_left_fill = 'rotate_left_fill'; + static const String rotate_right = 'rotate_right'; + static const String rotate_right_fill = 'rotate_right_fill'; + static const String scissors = 'scissors'; + static const String scissors_alt = 'scissors_alt'; + static const String scope = 'scope'; + static const String scribble = 'scribble'; + static const String search = 'search'; + static const String search_circle = 'search_circle'; + static const String search_circle_fill = 'search_circle_fill'; + static const String selection_pin_in_out = 'selection_pin_in_out'; + static const String settings = 'settings'; + static const String settings_solid = 'settings_solid'; + static const String share = 'share'; + static const String share_solid = 'share_solid'; + static const String share_up = 'share_up'; + static const String shield = 'shield'; + static const String shield_fill = 'shield_fill'; + static const String shield_lefthalf_fill = 'shield_lefthalf_fill'; + static const String shield_slash = 'shield_slash'; + static const String shield_slash_fill = 'shield_slash_fill'; + static const String shift = 'shift'; + static const String shift_fill = 'shift_fill'; + static const String shopping_cart = 'shopping_cart'; + static const String shuffle = 'shuffle'; + static const String shuffle_medium = 'shuffle_medium'; + static const String shuffle_thick = 'shuffle_thick'; + static const String sidebar_left = 'sidebar_left'; + static const String sidebar_right = 'sidebar_right'; + static const String signature = 'signature'; + static const String skew = 'skew'; + static const String slash_circle = 'slash_circle'; + static const String slash_circle_fill = 'slash_circle_fill'; + static const String slider_horizontal_3 = 'slider_horizontal_3'; + static const String slider_horizontal_below_rectangle = + 'slider_horizontal_below_rectangle'; + static const String slowmo = 'slowmo'; + static const String smallcircle_circle = 'smallcircle_circle'; + static const String smallcircle_circle_fill = 'smallcircle_circle_fill'; + static const String smallcircle_fill_circle = 'smallcircle_fill_circle'; + static const String smallcircle_fill_circle_fill = + 'smallcircle_fill_circle_fill'; + static const String smiley = 'smiley'; + static const String smiley_fill = 'smiley_fill'; + static const String smoke = 'smoke'; + static const String smoke_fill = 'smoke_fill'; + static const String snow = 'snow'; + static const String sort_down = 'sort_down'; + static const String sort_down_circle = 'sort_down_circle'; + static const String sort_down_circle_fill = 'sort_down_circle_fill'; + static const String sort_up = 'sort_up'; + static const String sort_up_circle = 'sort_up_circle'; + static const String sort_up_circle_fill = 'sort_up_circle_fill'; + static const String sparkles = 'sparkles'; + static const String speaker = 'speaker'; + static const String speaker_1 = 'speaker_1'; + static const String speaker_1_fill = 'speaker_1_fill'; + static const String speaker_2 = 'speaker_2'; + static const String speaker_2_fill = 'speaker_2_fill'; + static const String speaker_3 = 'speaker_3'; + static const String speaker_3_fill = 'speaker_3_fill'; + static const String speaker_fill = 'speaker_fill'; + static const String speaker_slash = 'speaker_slash'; + static const String speaker_slash_fill = 'speaker_slash_fill'; + static const String speaker_slash_fill_rtl = 'speaker_slash_fill_rtl'; + static const String speaker_slash_rtl = 'speaker_slash_rtl'; + static const String speaker_zzz = 'speaker_zzz'; + static const String speaker_zzz_fill = 'speaker_zzz_fill'; + static const String speaker_zzz_fill_rtl = 'speaker_zzz_fill_rtl'; + static const String speaker_zzz_rtl = 'speaker_zzz_rtl'; + static const String speedometer = 'speedometer'; + static const String sportscourt = 'sportscourt'; + static const String sportscourt_fill = 'sportscourt_fill'; + static const String square = 'square'; + static const String square_arrow_down = 'square_arrow_down'; + static const String square_arrow_down_fill = 'square_arrow_down_fill'; + static const String square_arrow_down_on_square = + 'square_arrow_down_on_square'; + static const String square_arrow_down_on_square_fill = + 'square_arrow_down_on_square_fill'; + static const String square_arrow_left = 'square_arrow_left'; + static const String square_arrow_left_fill = 'square_arrow_left_fill'; + static const String square_arrow_right = 'square_arrow_right'; + static const String square_arrow_right_fill = 'square_arrow_right_fill'; + static const String square_arrow_up = 'square_arrow_up'; + static const String square_arrow_up_fill = 'square_arrow_up_fill'; + static const String square_arrow_up_on_square = 'square_arrow_up_on_square'; + static const String square_arrow_up_on_square_fill = + 'square_arrow_up_on_square_fill'; + static const String square_favorites = 'square_favorites'; + static const String square_favorites_alt = 'square_favorites_alt'; + static const String square_favorites_alt_fill = 'square_favorites_alt_fill'; + static const String square_favorites_fill = 'square_favorites_fill'; + static const String square_fill = 'square_fill'; + static const String square_fill_line_vertical_square = + 'square_fill_line_vertical_square'; + static const String square_fill_line_vertical_square_fill = + 'square_fill_line_vertical_square_fill'; + static const String square_fill_on_circle_fill = 'square_fill_on_circle_fill'; + static const String square_fill_on_square_fill = 'square_fill_on_square_fill'; + static const String square_grid_2x2 = 'square_grid_2x2'; + static const String square_grid_2x2_fill = 'square_grid_2x2_fill'; + static const String square_grid_3x2 = 'square_grid_3x2'; + static const String square_grid_3x2_fill = 'square_grid_3x2_fill'; + static const String square_grid_4x3_fill = 'square_grid_4x3_fill'; + static const String square_lefthalf_fill = 'square_lefthalf_fill'; + static const String square_line_vertical_square = + 'square_line_vertical_square'; + static const String square_line_vertical_square_fill = + 'square_line_vertical_square_fill'; + static const String square_list = 'square_list'; + static const String square_list_fill = 'square_list_fill'; + static const String square_on_circle = 'square_on_circle'; + static const String square_on_square = 'square_on_square'; + static const String square_pencil = 'square_pencil'; + static const String square_pencil_fill = 'square_pencil_fill'; + static const String square_righthalf_fill = 'square_righthalf_fill'; + static const String square_split_1x2 = 'square_split_1x2'; + static const String square_split_1x2_fill = 'square_split_1x2_fill'; + static const String square_split_2x1 = 'square_split_2x1'; + static const String square_split_2x1_fill = 'square_split_2x1_fill'; + static const String square_split_2x2 = 'square_split_2x2'; + static const String square_split_2x2_fill = 'square_split_2x2_fill'; + static const String square_stack = 'square_stack'; + static const String square_stack_3d_down_dottedline = + 'square_stack_3d_down_dottedline'; + static const String square_stack_3d_down_right = 'square_stack_3d_down_right'; + static const String square_stack_3d_down_right_fill = + 'square_stack_3d_down_right_fill'; + static const String square_stack_3d_up = 'square_stack_3d_up'; + static const String square_stack_3d_up_fill = 'square_stack_3d_up_fill'; + static const String square_stack_3d_up_slash = 'square_stack_3d_up_slash'; + static const String square_stack_3d_up_slash_fill = + 'square_stack_3d_up_slash_fill'; + static const String square_stack_fill = 'square_stack_fill'; + static const String squares_below_rectangle = 'squares_below_rectangle'; + static const String star = 'star'; + static const String star_circle = 'star_circle'; + static const String star_circle_fill = 'star_circle_fill'; + static const String star_fill = 'star_fill'; + static const String star_lefthalf_fill = 'star_lefthalf_fill'; + static const String star_slash = 'star_slash'; + static const String star_slash_fill = 'star_slash_fill'; + static const String staroflife = 'staroflife'; + static const String staroflife_fill = 'staroflife_fill'; + static const String stop = 'stop'; + static const String stop_circle = 'stop_circle'; + static const String stop_circle_fill = 'stop_circle_fill'; + static const String stop_fill = 'stop_fill'; + static const String stopwatch = 'stopwatch'; + static const String stopwatch_fill = 'stopwatch_fill'; + static const String strikethrough = 'strikethrough'; + static const String suit_club = 'suit_club'; + static const String suit_club_fill = 'suit_club_fill'; + static const String suit_diamond = 'suit_diamond'; + static const String suit_diamond_fill = 'suit_diamond_fill'; + static const String suit_heart = 'suit_heart'; + static const String suit_heart_fill = 'suit_heart_fill'; + static const String suit_spade = 'suit_spade'; + static const String suit_spade_fill = 'suit_spade_fill'; + static const String sum = 'sum'; + static const String sun_dust = 'sun_dust'; + static const String sun_dust_fill = 'sun_dust_fill'; + static const String sun_haze = 'sun_haze'; + static const String sun_haze_fill = 'sun_haze_fill'; + static const String sun_max = 'sun_max'; + static const String sun_max_fill = 'sun_max_fill'; + static const String sun_min = 'sun_min'; + static const String sun_min_fill = 'sun_min_fill'; + static const String sunrise = 'sunrise'; + static const String sunrise_fill = 'sunrise_fill'; + static const String sunset = 'sunset'; + static const String sunset_fill = 'sunset_fill'; + static const String switch_camera = 'switch_camera'; + static const String switch_camera_solid = 'switch_camera_solid'; + static const String t_bubble = 't_bubble'; + static const String t_bubble_fill = 't_bubble_fill'; + static const String table = 'table'; + static const String table_badge_more = 'table_badge_more'; + static const String table_badge_more_fill = 'table_badge_more_fill'; + static const String table_fill = 'table_fill'; + static const String tag = 'tag'; + static const String tag_circle = 'tag_circle'; + static const String tag_circle_fill = 'tag_circle_fill'; + static const String tag_fill = 'tag_fill'; + static const String tag_solid = 'tag_solid'; + static const String tags = 'tags'; + static const String tags_solid = 'tags_solid'; + static const String text_aligncenter = 'text_aligncenter'; + static const String text_alignleft = 'text_alignleft'; + static const String text_alignright = 'text_alignright'; + static const String text_append = 'text_append'; + static const String text_badge_checkmark = 'text_badge_checkmark'; + static const String text_badge_minus = 'text_badge_minus'; + static const String text_badge_plus = 'text_badge_plus'; + static const String text_badge_star = 'text_badge_star'; + static const String text_badge_xmark = 'text_badge_xmark'; + static const String text_bubble = 'text_bubble'; + static const String text_bubble_fill = 'text_bubble_fill'; + static const String text_cursor = 'text_cursor'; + static const String text_insert = 'text_insert'; + static const String text_justify = 'text_justify'; + static const String text_justifyleft = 'text_justifyleft'; + static const String text_justifyright = 'text_justifyright'; + static const String text_quote = 'text_quote'; + static const String textbox = 'textbox'; + static const String textformat = 'textformat'; + static const String textformat_123 = 'textformat_123'; + static const String textformat_abc = 'textformat_abc'; + static const String textformat_abc_dottedunderline = + 'textformat_abc_dottedunderline'; + static const String textformat_alt = 'textformat_alt'; + static const String textformat_size = 'textformat_size'; + static const String textformat_subscript = 'textformat_subscript'; + static const String textformat_superscript = 'textformat_superscript'; + static const String thermometer = 'thermometer'; + static const String thermometer_snowflake = 'thermometer_snowflake'; + static const String thermometer_sun = 'thermometer_sun'; + static const String ticket = 'ticket'; + static const String ticket_fill = 'ticket_fill'; + static const String tickets = 'tickets'; + static const String tickets_fill = 'tickets_fill'; + static const String time = 'time'; + static const String time_solid = 'time_solid'; + static const String timelapse = 'timelapse'; + static const String timer = 'timer'; + static const String timer_fill = 'timer_fill'; + static const String today = 'today'; + static const String today_fill = 'today_fill'; + static const String tornado = 'tornado'; + static const String tortoise = 'tortoise'; + static const String tortoise_fill = 'tortoise_fill'; + static const String train_style_one = 'train_style_one'; + static const String train_style_two = 'train_style_two'; + static const String tram_fill = 'tram_fill'; + static const String trash = 'trash'; + static const String trash_circle = 'trash_circle'; + static const String trash_circle_fill = 'trash_circle_fill'; + static const String trash_fill = 'trash_fill'; + static const String trash_slash = 'trash_slash'; + static const String trash_slash_fill = 'trash_slash_fill'; + static const String tray = 'tray'; + static const String tray_2 = 'tray_2'; + static const String tray_2_fill = 'tray_2_fill'; + static const String tray_arrow_down = 'tray_arrow_down'; + static const String tray_arrow_down_fill = 'tray_arrow_down_fill'; + static const String tray_arrow_up = 'tray_arrow_up'; + static const String tray_arrow_up_fill = 'tray_arrow_up_fill'; + static const String tray_fill = 'tray_fill'; + static const String tray_full = 'tray_full'; + static const String tray_full_fill = 'tray_full_fill'; + static const String tree = 'tree'; + static const String triangle = 'triangle'; + static const String triangle_fill = 'triangle_fill'; + static const String triangle_lefthalf_fill = 'triangle_lefthalf_fill'; + static const String triangle_righthalf_fill = 'triangle_righthalf_fill'; + static const String tropicalstorm = 'tropicalstorm'; + static const String tuningfork = 'tuningfork'; + static const String tv = 'tv'; + static const String tv_circle = 'tv_circle'; + static const String tv_circle_fill = 'tv_circle_fill'; + static const String tv_fill = 'tv_fill'; + static const String tv_music_note = 'tv_music_note'; + static const String tv_music_note_fill = 'tv_music_note_fill'; + static const String uiwindow_split_2x1 = 'uiwindow_split_2x1'; + static const String umbrella = 'umbrella'; + static const String umbrella_fill = 'umbrella_fill'; + static const String underline = 'underline'; + static const String up_arrow = 'up_arrow'; + static const String upload_circle = 'upload_circle'; + static const String upload_circle_fill = 'upload_circle_fill'; + static const String video_camera = 'video_camera'; + static const String video_camera_solid = 'video_camera_solid'; + static const String videocam = 'videocam'; + static const String videocam_circle = 'videocam_circle'; + static const String videocam_circle_fill = 'videocam_circle_fill'; + static const String videocam_fill = 'videocam_fill'; + static const String view_2d = 'view_2d'; + static const String view_3d = 'view_3d'; + static const String viewfinder = 'viewfinder'; + static const String viewfinder_circle = 'viewfinder_circle'; + static const String viewfinder_circle_fill = 'viewfinder_circle_fill'; + static const String volume_down = 'volume_down'; + static const String volume_mute = 'volume_mute'; + static const String volume_off = 'volume_off'; + static const String volume_up = 'volume_up'; + static const String wand_rays = 'wand_rays'; + static const String wand_rays_inverse = 'wand_rays_inverse'; + static const String wand_stars = 'wand_stars'; + static const String wand_stars_inverse = 'wand_stars_inverse'; + static const String waveform = 'waveform'; + static const String waveform_circle = 'waveform_circle'; + static const String waveform_circle_fill = 'waveform_circle_fill'; + static const String waveform_path = 'waveform_path'; + static const String waveform_path_badge_minus = 'waveform_path_badge_minus'; + static const String waveform_path_badge_plus = 'waveform_path_badge_plus'; + static const String waveform_path_ecg = 'waveform_path_ecg'; + static const String wifi = 'wifi'; + static const String wifi_exclamationmark = 'wifi_exclamationmark'; + static const String wifi_slash = 'wifi_slash'; + static const String wind = 'wind'; + static const String wind_snow = 'wind_snow'; + static const String wrench = 'wrench'; + static const String wrench_fill = 'wrench_fill'; + static const String xmark = 'xmark'; + static const String xmark_circle = 'xmark_circle'; + static const String xmark_circle_fill = 'xmark_circle_fill'; + static const String xmark_octagon = 'xmark_octagon'; + static const String xmark_octagon_fill = 'xmark_octagon_fill'; + static const String xmark_rectangle = 'xmark_rectangle'; + static const String xmark_rectangle_fill = 'xmark_rectangle_fill'; + static const String xmark_seal = 'xmark_seal'; + static const String xmark_seal_fill = 'xmark_seal_fill'; + static const String xmark_shield = 'xmark_shield'; + static const String xmark_shield_fill = 'xmark_shield_fill'; + static const String xmark_square = 'xmark_square'; + static const String xmark_square_fill = 'xmark_square_fill'; + static const String zoom_in = 'zoom_in'; + static const String zoom_out = 'zoom_out'; + static const String zzz = 'zzz'; +} diff --git a/packages/stac_models/lib/widgets/icon_button/stac_icon_button.dart b/packages/stac_models/lib/widgets/icon_button/stac_icon_button.dart index 5d58e267..15d9796f 100644 --- a/packages/stac_models/lib/widgets/icon_button/stac_icon_button.dart +++ b/packages/stac_models/lib/widgets/icon_button/stac_icon_button.dart @@ -14,7 +14,7 @@ part 'stac_icon_button.g.dart'; /// ```dart /// StacIconButton( /// onPressed: {'action': 'navigate', 'route': '/next'}, -/// icon: StacIcon(icon: Icons.add), +/// icon: StacIcon(icon: 'add'), /// color: '#FF5722', /// ) /// ``` diff --git a/packages/stac_models/lib/widgets/widgets.dart b/packages/stac_models/lib/widgets/widgets.dart index 799748eb..22eb2f3b 100644 --- a/packages/stac_models/lib/widgets/widgets.dart +++ b/packages/stac_models/lib/widgets/widgets.dart @@ -1,6 +1,7 @@ library; export 'app_bar/stac_app_bar.dart'; +export 'aspect_ratio/stac_aspect_ratio.dart'; export 'center/stac_center.dart'; export 'column/stac_column.dart'; export 'container/stac_container.dart'; @@ -9,28 +10,29 @@ export 'dynamic_view/stac_dynamic_view.dart'; export 'elevated_button/stac_elevated_button.dart'; export 'expanded/stac_expanded.dart'; export 'filled_button/stac_filled_button.dart'; +export 'fitted_box/stac_fitted_box.dart'; +export 'flexible/stac_flexible.dart'; export 'floating_action_button/stac_floating_action_button.dart'; +export 'fractionally_sized_box/stac_fractionally_sized_box.dart'; +export 'icon/stac_icon.dart'; +export 'icon/stac_icons.dart'; export 'icon_button/stac_icon_button.dart'; export 'image/stac_image.dart'; +export 'limited_box/stac_limited_box.dart'; +export 'opacity/stac_opacity.dart'; export 'outlined_button/stac_outlined_button.dart'; export 'padding/stac_padding.dart'; export 'positioned/stac_positioned.dart'; export 'refresh_indicator/stac_refresh_indicator.dart'; export 'row/stac_row.dart'; +export 'safe_area/stac_safe_area.dart'; export 'scaffold/stac_scaffold.dart'; +export 'single_child_scroll_view/stac_single_child_scroll_view.dart'; export 'sized_box/stac_sized_box.dart'; export 'spacer/stac_spacer.dart'; export 'stack/stac_stack.dart'; export 'text/stac_text.dart'; export 'text_button/stac_text_button.dart'; -export 'aspect_ratio/stac_aspect_ratio.dart'; -export 'flexible/stac_flexible.dart'; -export 'fractionally_sized_box/stac_fractionally_sized_box.dart'; -export 'fitted_box/stac_fitted_box.dart'; -export 'limited_box/stac_limited_box.dart'; -export 'opacity/stac_opacity.dart'; +export 'vertical_divider/stac_vertical_divider.dart'; export 'visibility/stac_visibility.dart'; -export 'safe_area/stac_safe_area.dart'; export 'wrap/stac_wrap.dart'; -export 'single_child_scroll_view/stac_single_child_scroll_view.dart'; -export 'vertical_divider/stac_vertical_divider.dart'; From 71b6e46abf863d7c543f8ef6e71d287b6299309e Mon Sep 17 00:00:00 2001 From: Divyanshu Bhargava Date: Sat, 9 Aug 2025 21:59:35 +0530 Subject: [PATCH 2/2] docs: Add missing docs --- packages/stac_models/lib/widgets/icon/stac_icon.dart | 3 +++ 1 file changed, 3 insertions(+) diff --git a/packages/stac_models/lib/widgets/icon/stac_icon.dart b/packages/stac_models/lib/widgets/icon/stac_icon.dart index 1013938a..52ddf551 100644 --- a/packages/stac_models/lib/widgets/icon/stac_icon.dart +++ b/packages/stac_models/lib/widgets/icon/stac_icon.dart @@ -93,12 +93,15 @@ class StacIcon extends StacWidget { /// Blend mode for the icon. final StacBlendMode? blendMode; + /// Widget type identifier. @override String get type => 'icon'; + /// Creates a [StacIcon] from JSON. factory StacIcon.fromJson(Map json) => _$StacIconFromJson(json); + /// Converts this [StacIcon] to JSON. @override Map toJson() => _$StacIconToJson(this); }