UserMentionMarkup constructor

const UserMentionMarkup({
  1. required int from,
  2. required int length,
  3. String? userLink,
  4. int? userId,
})

Implementation

const UserMentionMarkup({
  required super.from,
  required super.length,
  this.userLink,
  this.userId,
}) : super(type: 'user_mention');