TextTile constructor

const TextTile({
  1. Key? key,
  2. double? spacing,
  3. EdgeInsetsGeometry? margin,
  4. TextTileAlign? align,
  5. TextTileStyle? style,
  6. Widget? subtitle,
  7. Widget? title,
})

Implementation

const TextTile({
  Key? key,
  this.spacing,
  this.margin,
  this.align,
  this.style,
  this.subtitle,
  this.title,
}) : super(key: key);