TpTile constructor

const TpTile(
  1. Widget icon,
  2. Widget title, {
  3. dynamic onTap()?,
  4. double? radius,
  5. Key? key,
})

Implementation

const TpTile(this.icon, this.title, {this.onTap, this.radius, Key? key})
    : super(key: key);