copyWith method
InputBorderStyle
copyWith({
- BorderType? borderType,
- BorderRadius? radius,
- Color? color,
- double? width,
- double? gapPadding,
- BorderStyle? style,
- double? strokeAlign,
Implementation
InputBorderStyle copyWith({
BorderType? borderType,
BorderRadius? radius,
Color? color,
double? width,
double? gapPadding,
BorderStyle? style,
double? strokeAlign,
}) =>
InputBorderStyle(
borderType: borderType ?? this.borderType,
radius: radius ?? this.radius,
color: color ?? this.color,
width: width ?? this.width,
gapPadding: gapPadding ?? this.gapPadding,
style: style ?? this.style,
strokeAlign: strokeAlign ?? this.strokeAlign);