copyWith method

CustomRefreshThemeData copyWith({
  1. Header? header,
  2. Footer? footer,
})

Implementation

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