copyWith method

GetBackgrounds copyWith({
  1. bool? forDarkTheme,
})

Implementation

GetBackgrounds copyWith({
  bool? forDarkTheme,
}) =>
    GetBackgrounds(
      forDarkTheme: forDarkTheme ?? this.forDarkTheme,
    );