copyWith method Null safety

DividerComponentLoaded copyWith(
  1. {DividerModel? copyThis}
)

Implementation

DividerComponentLoaded copyWith({DividerModel? copyThis}) {
  return DividerComponentLoaded(value: copyThis ?? value);
}