User constructor

User(
  1. dynamic id,
  2. dynamic createdAt,
  3. dynamic updatedAt,
  4. dynamic objectType,
  5. dynamic mode,
  6. List<ApiKey>? apiKeys,
  7. double? balance,
  8. List<User>? children,
  9. double? convenienceFeeRate,
  10. String? email,
  11. double? insuranceFeeRate,
  12. double? insuranceFeeMinimum,
  13. String? name,
  14. String? parentId,
  15. String? password,
  16. String? passwordConfirmation,
  17. String? phoneNumber,
  18. double? pricePerShipment,
  19. double? rechargeAmount,
  20. String? rechargeThreshold,
  21. double? secondaryRechargeAmount
)

Implementation

User(
  id,
  createdAt,
  updatedAt,
  objectType,
  mode,
  this.apiKeys,
  this.balance,
  this.children,
  this.convenienceFeeRate,
  this.email,
  this.insuranceFeeRate,
  this.insuranceFeeMinimum,
  this.name,
  this.parentId,
  this.password,
  this.passwordConfirmation,
  this.phoneNumber,
  this.pricePerShipment,
  this.rechargeAmount,
  this.rechargeThreshold,
  this.secondaryRechargeAmount,
) : super(id, createdAt, updatedAt, objectType, mode);