|
| 1 | +/// GENERATED CODE - DO NOT MODIFY BY HAND |
| 2 | +/// ***************************************************** |
| 3 | +/// FlutterGen |
| 4 | +/// ***************************************************** |
| 5 | +
|
| 6 | +import 'package:flutter/widgets.dart'; |
| 7 | + |
| 8 | +class $AssetsUnknownGen { |
| 9 | + const $AssetsUnknownGen(); |
| 10 | +} |
| 11 | + |
| 12 | +class Assets { |
| 13 | + Assets._(); |
| 14 | + |
| 15 | + static const $AssetsUnknownGen unknown = $AssetsUnknownGen(); |
| 16 | +} |
| 17 | + |
| 18 | +class AssetGenImage extends AssetImage { |
| 19 | + const AssetGenImage(String assetName) |
| 20 | + : _assetName = assetName, |
| 21 | + super(assetName); |
| 22 | + final String _assetName; |
| 23 | + |
| 24 | + Image image({ |
| 25 | + Key key, |
| 26 | + ImageFrameBuilder frameBuilder, |
| 27 | + ImageLoadingBuilder loadingBuilder, |
| 28 | + ImageErrorWidgetBuilder errorBuilder, |
| 29 | + String semanticLabel, |
| 30 | + bool excludeFromSemantics = false, |
| 31 | + double width, |
| 32 | + double height, |
| 33 | + Color color, |
| 34 | + BlendMode colorBlendMode, |
| 35 | + BoxFit fit, |
| 36 | + AlignmentGeometry alignment = Alignment.center, |
| 37 | + ImageRepeat repeat = ImageRepeat.noRepeat, |
| 38 | + Rect centerSlice, |
| 39 | + bool matchTextDirection = false, |
| 40 | + bool gaplessPlayback = false, |
| 41 | + bool isAntiAlias = false, |
| 42 | + FilterQuality filterQuality = FilterQuality.low, |
| 43 | + }) { |
| 44 | + return Image( |
| 45 | + key: key, |
| 46 | + image: this, |
| 47 | + frameBuilder: frameBuilder, |
| 48 | + loadingBuilder: loadingBuilder, |
| 49 | + errorBuilder: errorBuilder, |
| 50 | + semanticLabel: semanticLabel, |
| 51 | + excludeFromSemantics: excludeFromSemantics, |
| 52 | + width: width, |
| 53 | + height: height, |
| 54 | + color: color, |
| 55 | + colorBlendMode: colorBlendMode, |
| 56 | + fit: fit, |
| 57 | + alignment: alignment, |
| 58 | + repeat: repeat, |
| 59 | + centerSlice: centerSlice, |
| 60 | + matchTextDirection: matchTextDirection, |
| 61 | + gaplessPlayback: gaplessPlayback, |
| 62 | + isAntiAlias: isAntiAlias, |
| 63 | + filterQuality: filterQuality, |
| 64 | + ); |
| 65 | + } |
| 66 | + |
| 67 | + String get path => _assetName; |
| 68 | +} |
0 commit comments