copyWith method
BtnSize
copyWith({
- EdgeInsets? padding,
- double? minWidth,
- double? minHeight,
- double? fontSize,
- FontWeight? fontWeight,
Implementation
BtnSize copyWith({
EdgeInsets? padding,
double? minWidth,
double? minHeight,
double? fontSize,
FontWeight? fontWeight,
}) {
return BtnSize(
padding: padding ?? this.padding,
minWidth: minWidth ?? this.minWidth,
minHeight: minHeight ?? this.minHeight,
fontSize: fontSize ?? this.fontSize,
fontWeight: fontWeight ?? this.fontWeight,
);
}