copyWith method
Implementation
ActivationState copyWith({
bool? isLoading,
String? error,
bool? isSuccess,
}) =>
ActivationState(
isLoading: isLoading ?? this.isLoading,
error: error,
isSuccess: isSuccess ?? this.isSuccess,
);