Format_UserMention constructor

Format_UserMention({
  1. Int64? userId,
})

Implementation

factory Format_UserMention({
  $fixnum.Int64? userId,
}) {
  final _result = create();
  if (userId != null) {
    _result.userId = userId;
  }
  return _result;
}