User constructor

User({
  1. String? arn,
  2. String? accessString,
  3. Authentication? authentication,
  4. String? engine,
  5. String? status,
  6. List<String>? userGroupIds,
  7. String? userId,
  8. String? userName,
})

Implementation

User({
  this.arn,
  this.accessString,
  this.authentication,
  this.engine,
  this.status,
  this.userGroupIds,
  this.userId,
  this.userName,
});