CFTheme constructor

CFTheme(
  1. CFThemeBuilder builder
)

Implementation

CFTheme(CFThemeBuilder builder) {
  _primaryTextColor = builder.getPrimaryTextColor();
  _secondaryTextColor = builder.getSecondaryTextColor();
  _backgroundColor = builder.getBackgroundColor();
  _navigationBarBackgroundColor = builder.getNavigationBarBackgroundColor();
  _navigationBarTextColor = builder.getNavigationBarTextColor();
  _primaryFont = builder.getPrimaryFont();
  _secondaryFont = builder.getSecondaryFont();
  _buttonBackgroundColor = builder.getButtonBackgroundColor();
  _buttonTextColor = builder.getButtonTextColor();
}