AuthUIConfig constructor

const AuthUIConfig({
  1. String? nameLabelText,
  2. String? loginBtnText,
  3. String? backgroundColor,
  4. String? logoImage,
  5. int? logoWidth,
  6. int? logoHeight,
  7. bool? logoIsHidden,
  8. bool? changeBtnIsHidden,
  9. String? changeBtnTitle,
  10. String? checkedImage,
  11. String? uncheckImage,
  12. List<CustomViewBlock>? customViewBlockList,
})

Implementation

const AuthUIConfig({
  this.nameLabelText,
  this.loginBtnText,
  this.backgroundColor,
  this.logoImage,
  this.logoWidth,
  this.logoHeight,
  this.logoIsHidden,
  this.changeBtnIsHidden,
  this.changeBtnTitle,
  this.checkedImage,
  this.uncheckImage,
  this.customViewBlockList,
});