DfApiUserInfo constructor

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

Implementation

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