BoxLooseDecoration constructor

BoxLooseDecoration({
  1. TextStyle? textStyle,
  2. ObscureStyle? obscureStyle,
  3. String? errorText,
  4. TextStyle? errorTextStyle,
  5. String? hintText,
  6. TextStyle? hintTextStyle,
  7. Radius radius = const Radius.circular(8.0),
  8. double strokeWidth = 1.0,
  9. double gapSpace = 16.0,
  10. List<double>? gapSpaces,
  11. required ColorBuilder strokeColorBuilder,
  12. ColorBuilder? bgColorBuilder,
})

Implementation

BoxLooseDecoration({
  TextStyle? textStyle,
  ObscureStyle? obscureStyle,
  String? errorText,
  TextStyle? errorTextStyle,
  String? hintText,
  TextStyle? hintTextStyle,
  this.radius = const Radius.circular(8.0),
  this.strokeWidth = 1.0,
  this.gapSpace = 16.0,
  this.gapSpaces,
  required this.strokeColorBuilder,
  this.bgColorBuilder,
}) : super(
        textStyle: textStyle,
        obscureStyle: obscureStyle,
        errorText: errorText,
        errorTextStyle: errorTextStyle,
        hintText: hintText,
        hintTextStyle: hintTextStyle,
        baseBgColorBuilder: bgColorBuilder,
      );