NuntioStyle constructor

NuntioStyle({
  1. Color? borderColor,
  2. Color? textFieldColor,
  3. double? buttonWidth,
  4. double? buttonHeight,
  5. double? logoHeight,
  6. BoxDecoration? background,
  7. double? spreadRadius,
  8. double? blurRadius,
})

Implementation

NuntioStyle({
  Color? borderColor,
  Color? textFieldColor,
  double? buttonWidth,
  double? buttonHeight,
  double? logoHeight,
  BoxDecoration? background,
  double? spreadRadius,
  double? blurRadius,
}) {
  _borderColor = borderColor;
  _textFieldColor = textFieldColor;
  _buttonWidth = buttonWidth;
  _buttonHeight = buttonHeight;
  _logoHeight = logoHeight;
  _background = background;
  _spreadRadius = spreadRadius;
  _blurRadius = blurRadius;
}