BaseCommonConfig.autoFlatConfig constructor

BaseCommonConfig.autoFlatConfig({
  1. Color? brandPrimary,
  2. Color? brandPrimaryTap,
  3. Color? brandSuccess,
  4. Color? brandWarning,
  5. Color? brandError,
  6. Color? brandImportant,
  7. Color? brandImportantValue,
  8. Color? brandAuxiliary,
  9. Color? colorTextBase,
  10. Color? colorTextImportant,
  11. Color? colorTextBaseInverse,
  12. Color? colorTextSecondary,
  13. Color? colorTextDisabled,
  14. Color? colorTextHint,
  15. Color? colorLink,
  16. Color? fillBase,
  17. Color? fillBody,
  18. Color? fillMask,
  19. Color? borderColorBase,
  20. Color? dividerColorBase,
  21. double? fontSizeBebas,
  22. double? fontSizeHeadLg,
  23. double? fontSizeBase,
  24. double? fontSizeHead,
  25. double? fontSizeSubHead,
  26. double? fontSizeCaption,
  27. double? fontSizeCaptionSm,
  28. double? radiusXs,
  29. double? radiusSm,
  30. double? radiusMd,
  31. double? radiusLg,
  32. double? borderWidthSm,
  33. double? borderWidthMd,
  34. double? borderWidthLg,
  35. double? hSpacingXs,
  36. double? hSpacingSm,
  37. double? hSpacingMd,
  38. double? hSpacingLg,
  39. double? hSpacingXl,
  40. double? hSpacingXxl,
  41. double? vSpacingXs,
  42. double? vSpacingSm,
  43. double? vSpacingMd,
  44. double? vSpacingLg,
  45. double? vSpacingXl,
  46. double? vSpacingXxl,
  47. double? iconSizeXxs,
  48. double? iconSizeXs,
  49. double? iconSizeSm,
  50. double? iconSizeMd,
  51. double? iconSizeLg,
  52. String configId = GLOBAL_CONFIG_ID,
})

Implementation

BaseCommonConfig.autoFlatConfig({
  Color? brandPrimary,
  Color? brandPrimaryTap,
  Color? brandSuccess,
  Color? brandWarning,
  Color? brandError,
  Color? brandImportant,
  Color? brandImportantValue,
  Color? brandAuxiliary,
  Color? colorTextBase,
  Color? colorTextImportant,
  Color? colorTextBaseInverse,
  Color? colorTextSecondary,
  Color? colorTextDisabled,
  Color? colorTextHint,
  Color? colorLink,
  Color? fillBase,
  Color? fillBody,
  Color? fillMask,
  Color? borderColorBase,
  Color? dividerColorBase,
  double? fontSizeBebas,
  double? fontSizeHeadLg,
  double? fontSizeBase,
  double? fontSizeHead,
  double? fontSizeSubHead,
  double? fontSizeCaption,
  double? fontSizeCaptionSm,
  double? radiusXs,
  double? radiusSm,
  double? radiusMd,
  double? radiusLg,
  double? borderWidthSm,
  double? borderWidthMd,
  double? borderWidthLg,
  double? hSpacingXs,
  double? hSpacingSm,
  double? hSpacingMd,
  double? hSpacingLg,
  double? hSpacingXl,
  double? hSpacingXxl,
  double? vSpacingXs,
  double? vSpacingSm,
  double? vSpacingMd,
  double? vSpacingLg,
  double? vSpacingXl,
  double? vSpacingXxl,
  double? iconSizeXxs,
  double? iconSizeXs,
  double? iconSizeSm,
  double? iconSizeMd,
  double? iconSizeLg,
  String configId = GLOBAL_CONFIG_ID,
})  : _brandPrimary = brandPrimary,
      _brandPrimaryTap = brandPrimaryTap,
      _brandSuccess = brandSuccess,
      _brandWarning = brandWarning,
      _brandError = brandError,
      _brandImportant = brandImportant,
      _brandImportantValue = brandImportantValue,
      _brandAuxiliary = brandAuxiliary,
      _colorTextBase = colorTextBase,
      _colorTextImportant = colorTextImportant,
      _colorTextBaseInverse = colorTextBaseInverse,
      _colorTextSecondary = colorTextSecondary,
      _colorTextDisabled = colorTextDisabled,
      _colorTextHint = colorTextHint,
      _colorLink = colorLink,
      _fillBase = fillBase,
      _fillBody = fillBody,
      _fillMask = fillMask,
      _borderColorBase = borderColorBase,
      _dividerColorBase = dividerColorBase,
      _fontSizeBebas = fontSizeBebas,
      _fontSizeHeadLg = fontSizeHeadLg,
      _fontSizeBase = fontSizeBase,
      _fontSizeHead = fontSizeHead,
      _fontSizeSubHead = fontSizeSubHead,
      _fontSizeCaption = fontSizeCaption,
      _fontSizeCaptionSm = fontSizeCaptionSm,
      _radiusXs = radiusXs,
      _radiusSm = radiusSm,
      _radiusMd = radiusMd,
      _radiusLg = radiusLg,
      _borderWidthSm = borderWidthSm,
      _borderWidthMd = borderWidthMd,
      _borderWidthLg = borderWidthLg,
      _hSpacingXs = hSpacingXs,
      _hSpacingSm = hSpacingSm,
      _hSpacingMd = hSpacingMd,
      _hSpacingLg = hSpacingLg,
      _hSpacingXl = hSpacingXl,
      _hSpacingXxl = hSpacingXxl,
      _vSpacingXs = vSpacingXs,
      _vSpacingSm = vSpacingSm,
      _vSpacingMd = vSpacingMd,
      _vSpacingLg = vSpacingLg,
      _vSpacingXl = vSpacingXl,
      _vSpacingXxl = vSpacingXxl,
      _iconSizeXxs = iconSizeXxs,
      _iconSizeXs = iconSizeXs,
      _iconSizeSm = iconSizeSm,
      _iconSizeMd = iconSizeMd,
      _iconSizeLg = iconSizeLg,
      super(configId: configId, autoFlatConfig: true);