QiyuUserInfoData constructor

QiyuUserInfoData({
  1. int? index,
  2. required String key,
  3. required String value,
  4. required String label,
  5. String? href,
  6. bool hidden = false,
})

Implementation

QiyuUserInfoData({
  this.index,
  required this.key,
  required this.value,
  required this.label,
  this.href,
  this.hidden = false,
});