NIMLoginInfo constructor

NIMLoginInfo({
  1. required String account,
  2. required String token,
  3. NIMAuthType authType = NIMAuthType.authTypeDefault,
  4. String? loginExt,
  5. int? customClientType,
})

Implementation

NIMLoginInfo({
  required this.account,
  required this.token,
  this.authType = NIMAuthType.authTypeDefault,
  this.loginExt,
  this.customClientType,
});