copyWith method

FaderComponentLoaded copyWith({
  1. FaderModel? copyThis,
})

Implementation

FaderComponentLoaded copyWith({FaderModel? copyThis}) {
  return FaderComponentLoaded(value: copyThis ?? value);
}