AbnormalStateConfig constructor

AbnormalStateConfig({
  1. BaseTextStyle? titleTextStyle,
  2. BaseTextStyle? contentTextStyle,
  3. BaseTextStyle? operateTextStyle,
  4. double? btnRadius,
  5. BaseTextStyle? singleTextStyle,
  6. BaseTextStyle? doubleTextStyle,
  7. double? singleMinWidth,
  8. double? doubleMinWidth,
  9. String configId = GLOBAL_CONFIG_ID,
})

Implementation

AbnormalStateConfig({
  BaseTextStyle? titleTextStyle,
  BaseTextStyle? contentTextStyle,
  BaseTextStyle? operateTextStyle,
  double? btnRadius,
  BaseTextStyle? singleTextStyle,
  BaseTextStyle? doubleTextStyle,
  double? singleMinWidth,
  double? doubleMinWidth,
  String configId = GLOBAL_CONFIG_ID,
})  : _titleTextStyle = titleTextStyle,
      _contentTextStyle = contentTextStyle,
      _operateTextStyle = operateTextStyle,
      _btnRadius = btnRadius,
      _singleTextStyle = singleTextStyle,
      _doubleTextStyle = doubleTextStyle,
      _singleMinWidth = singleMinWidth,
      _doubleMinWidth = doubleMinWidth,
      super(configId: configId);