NiceUserMention constructor

const NiceUserMention({
  1. Key? key,
  2. required String name,
  3. String? avatarUrl,
  4. VoidCallback? onTap,
  5. bool compact = false,
  6. Color? backgroundColor,
})

Implementation

const NiceUserMention({
  super.key,
  required this.name,
  this.avatarUrl,
  this.onTap,
  this.compact = false,
  this.backgroundColor,
});