TProfile constructor

const TProfile({
  1. Key? key,
  2. String? icon,
  3. String? text,
  4. Axis axis = Axis.horizontal,
  5. double size = 40,
  6. double spacing = 12,
})

Implementation

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