FLDyImageUnitModel constructor

FLDyImageUnitModel({
  1. String? uniqueId,
  2. String? unitName,
  3. FLDyUnitPositioned? positioned,
  4. String? flex,
  5. required FLDyUnitImageProvider? imageProvider,
  6. FLDyUnitModel? loading,
  7. double? width,
  8. double? height,
  9. String? color,
  10. String? fit,
  11. String? alignment,
  12. String? imageRepeat,
  13. String? semanticLabel,
  14. bool? excludeFromSemantics,
})

Implementation

FLDyImageUnitModel(
    {String? uniqueId,
    String? unitName,
    FLDyUnitPositioned? positioned,
    String? flex,
    required this.imageProvider,
    this.loading,
    this.width,
    this.height,
    this.color,
    this.fit,
    this.alignment,
    this.imageRepeat,
    this.semanticLabel,
    this.excludeFromSemantics})
    : super(
          uniqueId: uniqueId,
          unitName: unitName,
          positioned: positioned,
          flex: flex);