DisplayName constructor

const DisplayName({
  1. Key? key,
  2. required User user,
  3. int maxLines = 1,
  4. TextOverflow? overflow,
  5. int length = 6,
})

Implementation

const DisplayName({
  super.key,
  required this.user,
  this.maxLines = 1,
  this.overflow,
  this.length = 6,
});