DfApiUserInfo constructor

DfApiUserInfo({
  1. String? name,
  2. String? familyName,
  3. String? givenName,
  4. String? email,
  5. String? role,
  6. List<String>? businessItems,
})

Implementation

DfApiUserInfo({
  this.name,
  this.familyName,
  this.givenName,
  this.email,
  this.role,
  this.businessItems,
});