IconText.img constructor

const IconText.img({
  1. Key? key,
  2. required Widget? icon,
  3. bool isV = true,
  4. bool iconIsLeftOrTop = true,
  5. num? spacing,
  6. bool adaptChildrenSize = false,
  7. double? iconBottom = 0,
  8. bool isExpanded = false,
  9. CrossAxisAlignment? crossAxisAlignment,
  10. double? textSize,
})

Implementation

const IconText.img({
  Key? key,
  required this.icon,
  this.isV = true,
  this.iconIsLeftOrTop = true,
  this.spacing,
  this.adaptChildrenSize = false,
  this.iconBottom = 0,
  this.isExpanded = false,
  this.crossAxisAlignment,
  this.textSize,
})  : this.text = null,
      this.data = null,
      this.iData = null,
      this.color = null,
      this.size = null,
      super(key: key);