TileRow constructor

const TileRow(
  1. Widget icon,
  2. Widget title, {
  3. Key? key,
  4. dynamic onTap()?,
  5. bool isShowArrow = true,
})

Implementation

const TileRow(
  this.icon,
  this.title, {
  super.key,
  this.onTap,
  this.isShowArrow = true,
});