TLogo constructor

const TLogo({
  1. Key? key,
  2. String? icon,
  3. String? text,
  4. VoidCallback? onTap,
  5. Axis axis = Axis.horizontal,
  6. double size = 40,
  7. double fontSize = 30,
  8. double spacing = 12,
})

Implementation

const TLogo({
  super.key,
  this.icon,
  this.text,
  this.onTap,
  this.axis = Axis.horizontal,
  this.size = 40,
  this.fontSize = 30,
  this.spacing = 12,
});