copyWith method
Implementation
ConsentState copyWith({
  bool? isLoading,
  String? error,
}) {
  return ConsentState(
    isLoading: isLoading ?? this.isLoading,
    error: error ?? this.error,
  );
}
ConsentState copyWith({
  bool? isLoading,
  String? error,
}) {
  return ConsentState(
    isLoading: isLoading ?? this.isLoading,
    error: error ?? this.error,
  );
}