/// GENERATED CODE - DO NOT MODIFY BY HAND /// ***************************************************** /// FlutterGen /// ***************************************************** // coverage:ignore-file // ignore_for_file: type=lint // ignore_for_file: directives_ordering,unnecessary_import,implicit_dynamic_list_literal,deprecated_member_use import 'package:flutter/widgets.dart'; class $AssetsImagesGen { const $AssetsImagesGen(); /// File path: assets/images/icon_add_friend_collect.webp AssetGenImage get iconAddFriendCollect => const AssetGenImage('assets/images/icon_add_friend_collect.webp'); /// File path: assets/images/icon_loation_member.webp AssetGenImage get iconLoationMember => const AssetGenImage('assets/images/icon_loation_member.webp'); /// File path: assets/images/icon_location_friend_add.webp AssetGenImage get iconLocationFriendAdd => const AssetGenImage('assets/images/icon_location_friend_add.webp'); /// File path: assets/images/icon_location_layer.webp AssetGenImage get iconLocationLayer => const AssetGenImage('assets/images/icon_location_layer.webp'); /// File path: assets/images/icon_location_me_avatar.webp AssetGenImage get iconLocationMeAvatar => const AssetGenImage('assets/images/icon_location_me_avatar.webp'); /// File path: assets/images/icon_location_menu.webp AssetGenImage get iconLocationMenu => const AssetGenImage('assets/images/icon_location_menu.webp'); /// File path: assets/images/icon_location_position.webp AssetGenImage get iconLocationPosition => const AssetGenImage('assets/images/icon_location_position.webp'); /// File path: assets/images/icon_location_refresh.webp AssetGenImage get iconLocationRefresh => const AssetGenImage('assets/images/icon_location_refresh.webp'); /// File path: assets/images/icon_location_search.webp AssetGenImage get iconLocationSearch => const AssetGenImage('assets/images/icon_location_search.webp'); /// File path: assets/images/icon_main_tab_friend_selected.webp AssetGenImage get iconMainTabFriendSelected => const AssetGenImage('assets/images/icon_main_tab_friend_selected.webp'); /// File path: assets/images/icon_main_tab_friend_unselect.webp AssetGenImage get iconMainTabFriendUnselect => const AssetGenImage('assets/images/icon_main_tab_friend_unselect.webp'); /// File path: assets/images/icon_main_tab_location_selected.webp AssetGenImage get iconMainTabLocationSelected => const AssetGenImage('assets/images/icon_main_tab_location_selected.webp'); /// File path: assets/images/icon_main_tab_location_unselect.webp AssetGenImage get iconMainTabLocationUnselect => const AssetGenImage('assets/images/icon_main_tab_location_unselect.webp'); /// File path: assets/images/icon_main_tab_urgent_selected.webp AssetGenImage get iconMainTabUrgentSelected => const AssetGenImage('assets/images/icon_main_tab_urgent_selected.webp'); /// File path: assets/images/icon_mian_tab_urgent_unselect.webp AssetGenImage get iconMianTabUrgentUnselect => const AssetGenImage('assets/images/icon_mian_tab_urgent_unselect.webp'); /// File path: assets/images/icon_track.webp AssetGenImage get iconTrack => const AssetGenImage('assets/images/icon_track.webp'); /// List of all assets List get values => [ iconAddFriendCollect, iconLoationMember, iconLocationFriendAdd, iconLocationLayer, iconLocationMeAvatar, iconLocationMenu, iconLocationPosition, iconLocationRefresh, iconLocationSearch, iconMainTabFriendSelected, iconMainTabFriendUnselect, iconMainTabLocationSelected, iconMainTabLocationUnselect, iconMainTabUrgentSelected, iconMianTabUrgentUnselect, iconTrack ]; } class Assets { const Assets._(); static const $AssetsImagesGen images = $AssetsImagesGen(); } class AssetGenImage { const AssetGenImage( this._assetName, { this.size, this.flavors = const {}, }); final String _assetName; final Size? size; final Set flavors; Image image({ Key? key, AssetBundle? bundle, ImageFrameBuilder? frameBuilder, ImageErrorWidgetBuilder? errorBuilder, String? semanticLabel, bool excludeFromSemantics = false, double? scale, double? width, double? height, Color? color, Animation? opacity, BlendMode? colorBlendMode, BoxFit? fit, AlignmentGeometry alignment = Alignment.center, ImageRepeat repeat = ImageRepeat.noRepeat, Rect? centerSlice, bool matchTextDirection = false, bool gaplessPlayback = true, bool isAntiAlias = false, String? package, FilterQuality filterQuality = FilterQuality.medium, int? cacheWidth, int? cacheHeight, }) { return Image.asset( _assetName, key: key, bundle: bundle, frameBuilder: frameBuilder, errorBuilder: errorBuilder, semanticLabel: semanticLabel, excludeFromSemantics: excludeFromSemantics, scale: scale, width: width, height: height, color: color, opacity: opacity, colorBlendMode: colorBlendMode, fit: fit, alignment: alignment, repeat: repeat, centerSlice: centerSlice, matchTextDirection: matchTextDirection, gaplessPlayback: gaplessPlayback, isAntiAlias: isAntiAlias, package: package, filterQuality: filterQuality, cacheWidth: cacheWidth, cacheHeight: cacheHeight, ); } ImageProvider provider({ AssetBundle? bundle, String? package, }) { return AssetImage( _assetName, bundle: bundle, package: package, ); } String get path => _assetName; String get keyName => _assetName; }