copyWith method
Implementation
CustomRefreshThemeData copyWith({Header? header, Footer? footer}) {
return CustomRefreshThemeData(
header: header ?? this.header,
footer: footer ?? this.footer,
);
}
CustomRefreshThemeData copyWith({Header? header, Footer? footer}) {
return CustomRefreshThemeData(
header: header ?? this.header,
footer: footer ?? this.footer,
);
}