copyWith method
Implementation
FieldStyle? copyWith({double? headerSpacing, double? footerSpacing}) {
return FieldStyle(
headerSpacing: headerSpacing ?? this.headerSpacing,
footerSpacing: footerSpacing ?? this.footerSpacing,
);
}
FieldStyle? copyWith({double? headerSpacing, double? footerSpacing}) {
return FieldStyle(
headerSpacing: headerSpacing ?? this.headerSpacing,
footerSpacing: footerSpacing ?? this.footerSpacing,
);
}